From f34eb9c9e6b61b596d0085e9a2baec48628b23e1 Mon Sep 17 00:00:00 2001 From: Lawrence <1934378145@qq.com> Date: 星期四, 14 一月 2021 23:53:57 +0800 Subject: [PATCH] 通道查询排序输出,避免列表杂乱无章 --- src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommanderForPlatform.java | 36 +++++++++++++++++++++++++++++++++++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommanderForPlatform.java b/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommanderForPlatform.java index 9ec2b49..38d08ec 100644 --- a/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommanderForPlatform.java +++ b/src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommanderForPlatform.java @@ -1,6 +1,12 @@ package com.genersoft.iot.vmp.gb28181.transmit.cmd; +import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel; import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform; +import com.genersoft.iot.vmp.gb28181.event.SipSubscribe; + +import javax.sip.header.WWWAuthenticateHeader; +import java.nio.channels.Channel; +import java.util.List; public interface ISIPCommanderForPlatform { @@ -9,5 +15,33 @@ * @param parentPlatform * @return */ - boolean register(ParentPlatform parentPlatform, String callId, String realm, String nonce, String scheme); + boolean register(ParentPlatform parentPlatform); + boolean register(ParentPlatform parentPlatform, String callId, WWWAuthenticateHeader www, SipSubscribe.Event errorEvent , SipSubscribe.Event okEvent); + + /** + * 鍚戜笂绾у钩鍙版敞閿� + * @param parentPlatform + * @return + */ + boolean unregister(ParentPlatform parentPlatform, SipSubscribe.Event errorEvent , SipSubscribe.Event okEvent); + + + /** + * 鍚戜笂绾у钩鍙戦�佸績璺充俊鎭� + * @param parentPlatform + * @return callId(浣滀负鎺ュ彈鍥炲鐨勫垽瀹�) + */ + String keepalive(ParentPlatform parentPlatform); + + + /** + * 鍚戜笂绾у洖澶嶉�氶亾淇℃伅 + * @param channel 閫氶亾淇℃伅 + * @param parentPlatform 骞冲彴淇℃伅 + * @param sn + * @param fromTag + * @param size + * @return + */ + boolean catalogQuery(DeviceChannel channel, ParentPlatform parentPlatform, String sn, String fromTag, int size); } -- Gitblit v1.8.0