添加/修正 任务数日志

This commit is contained in:
shikong 2023-10-02 00:07:05 +08:00
parent 69e9328392
commit c19d7cd5eb

View File

@ -79,7 +79,7 @@ public class DeviceProxyService {
});
Flow.Subscriber<SIPRequest> subscriber = byeSubscriber(key, device, callbackTask);
subscribe.getByeSubscribe().addSubscribe(key, subscriber);
int num = taskNum.getAndIncrement();
int num = taskNum.incrementAndGet();
log.info("当前任务数 {}", num);
zlmStreamChangeHookService.handlerMap.put(key,()->{
StartSendRtp startSendRtp = new StartSendRtp();
@ -112,7 +112,7 @@ public class DeviceProxyService {
});
Flow.Subscriber<SIPRequest> subscriber = byeSubscriber(key, device, downloadTask);
subscribe.getByeSubscribe().addSubscribe(key, subscriber);
int num = taskNum.getAndIncrement();
int num = taskNum.incrementAndGet();
log.info("当前任务数 {}", num);
zlmStreamChangeHookService.handlerMap.put(key,()->{
StartSendRtp startSendRtp = new StartSendRtp();
@ -210,7 +210,8 @@ public class DeviceProxyService {
private final SipSender sender;
private void mediaStatus(){
taskNum.getAndDecrement();
int num = taskNum.decrementAndGet();
log.info("当前任务数 {}", num);
CallIdHeader requestCallId = request.getCallId();
String callId = requestCallId.getCallId();
callbackTask.remove(callId);