init
This commit is contained in:
@@ -50,7 +50,7 @@ public class CancelMessageHandler extends AbstractMessageHandle implements IMess
|
||||
// IM
|
||||
Long receiverId = room.getReceiverId();
|
||||
Long callerId = room.getCallId();
|
||||
yunxinWsService.sendToCallNotifyAsync(callerId,receiverId,1,0);
|
||||
yunxinWsService.sendToCallNotifyAsync(callerId,receiverId,1,0L);
|
||||
// 更新房间状态
|
||||
userCallService.update(Wrappers.lambdaUpdate(UserCall.class)
|
||||
.eq(UserCall::getId,roomId)
|
||||
|
||||
@@ -46,7 +46,7 @@ public class RefuseMessageHandler extends AbstractMessageHandle implements IMess
|
||||
//发送IM通知
|
||||
Long receiverId = room.getReceiverId();
|
||||
Long callerId = room.getCallId();
|
||||
yunxinWsService.sendToCallNotifyAsync(callerId,receiverId,1,0);
|
||||
yunxinWsService.sendToCallNotifyAsync(callerId,receiverId,1,0L);
|
||||
|
||||
// 更新房间状态
|
||||
userCallService.update(Wrappers.lambdaUpdate(UserCall.class)
|
||||
|
||||
@@ -129,7 +129,7 @@ public class RoomCheckJobService {
|
||||
nextCreateJob = settleResp.isNextRun();
|
||||
}
|
||||
roomService.closeAllFd(roomId);
|
||||
yunxinWsService.sendToCallNotifyAsync(callUserData.getId(),receiverUserData.getId(),3,0);
|
||||
yunxinWsService.sendToCallNotifyAsync(callUserData.getId(),receiverUserData.getId(),3,0L);
|
||||
return JobResp.builder().nextCreateJob(nextCreateJob).build();
|
||||
}
|
||||
return JobResp.builder().nextCreateJob(true).build();
|
||||
|
||||
Reference in New Issue
Block a user