From dd0a234c051c451143137ebb5bfbd2d789a6d2f5 Mon Sep 17 00:00:00 2001 From: Lawrence <1934378145@qq.com> Date: 星期二, 12 一月 2021 13:48:42 +0800 Subject: [PATCH] 进一步优化录像列表获取算法 --- src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommanderForPlatform.java | 21 ++++++++++++++++++++- 1 files changed, 20 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..8602468 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,9 @@ package com.genersoft.iot.vmp.gb28181.transmit.cmd; import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform; +import com.genersoft.iot.vmp.gb28181.event.SipSubscribe; + +import javax.sip.header.WWWAuthenticateHeader; public interface ISIPCommanderForPlatform { @@ -9,5 +12,21 @@ * @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); } -- Gitblit v1.8.0