Uses of Interface
io.github.lunasaw.sip.common.transmit.event.request.SipRequestProcessor
Packages that use SipRequestProcessor
Package
Description
SIP客户端接收到MESSAGE类型请求后的处理
SIP服务端接收到请求后的处理
-
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.client.transmit.request.ack
Classes in io.github.lunasaw.gbproxy.client.transmit.request.ack that implement SipRequestProcessorModifier and TypeClassDescriptionclass
客户端ACK请求处理器 负责处理客户端收到的ACK请求,专注于协议层面处理 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.client.transmit.request.bye
Classes in io.github.lunasaw.gbproxy.client.transmit.request.bye that implement SipRequestProcessorModifier and TypeClassDescriptionclass
客户端BYE请求处理器 负责处理客户端收到的BYE请求,专注于协议层面处理 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.client.transmit.request.cancel
Classes in io.github.lunasaw.gbproxy.client.transmit.request.cancel that implement SipRequestProcessorModifier and TypeClassDescriptionclass
客户端CANCEL请求处理器 负责处理客户端收到的CANCEL请求,专注于协议层面处理 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.client.transmit.request.info
Classes in io.github.lunasaw.gbproxy.client.transmit.request.info that implement SipRequestProcessorModifier and TypeClassDescriptionclass
客户端INFO请求处理器 负责处理客户端收到的INFO请求,专注于协议层面处理 按照SIP处理器业务逻辑分离规范,只负责SIP协议层面的处理,不包含业务逻辑 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.client.transmit.request.invite
Classes in io.github.lunasaw.gbproxy.client.transmit.request.invite that implement SipRequestProcessorModifier and TypeClassDescriptionclass
SIP命令类型: 收到Invite请求 客户端发起Invite请求, Invite Request消息实现,请求视频指令 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.client.transmit.request.message
Classes in io.github.lunasaw.gbproxy.client.transmit.request.message that implement SipRequestProcessorModifier and TypeClassDescriptionclass
客户端MESSAGE请求处理器 负责处理客户端收到的MESSAGE请求,专注于协议层面处理 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.client.transmit.request.subscribe
Classes in io.github.lunasaw.gbproxy.client.transmit.request.subscribe that implement SipRequestProcessorModifier and TypeClassDescriptionclass
客户端SUBSCRIBE请求处理器 负责处理客户端收到的SUBSCRIBE请求,专注于协议层面处理 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.server.transmit.request
Classes in io.github.lunasaw.gbproxy.server.transmit.request that implement SipRequestProcessorModifier and TypeClassDescriptionclass
Server模块SIP请求处理器抽象基类 为server模块提供统一的请求处理器基类,便于模块隔离和功能扩展 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.server.transmit.request.bye
Classes in io.github.lunasaw.gbproxy.server.transmit.request.bye that implement SipRequestProcessorModifier and TypeClassDescriptionclass
Server模块BYE请求处理器 只负责SIP协议层面的处理,业务逻辑通过ServerByeProcessorHandler接口实现 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.server.transmit.request.info
Classes in io.github.lunasaw.gbproxy.server.transmit.request.info that implement SipRequestProcessorModifier and TypeClassDescriptionclass
Server模块INFO请求处理器 只负责SIP协议层面的处理,业务逻辑通过ServerInfoProcessorHandler接口实现 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.server.transmit.request.invite
Classes in io.github.lunasaw.gbproxy.server.transmit.request.invite that implement SipRequestProcessorModifier and TypeClassDescriptionclass
服务端INVITE请求处理器 处理服务端收到的INVITE请求,专注于协议层面处理 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.server.transmit.request.message
Classes in io.github.lunasaw.gbproxy.server.transmit.request.message that implement SipRequestProcessorModifier and TypeClassDescriptionclass
Server模块MESSAGE请求处理器 只负责SIP协议层面的处理,业务逻辑通过ServerMessageProcessorHandler接口实现 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.server.transmit.request.notify
Classes in io.github.lunasaw.gbproxy.server.transmit.request.notify that implement SipRequestProcessorModifier and TypeClassDescriptionclass
Server模块NOTIFY请求处理器 只负责SIP协议层面的处理,业务逻辑通过ServerNotifyProcessorHandler接口实现 -
Uses of SipRequestProcessor in io.github.lunasaw.gbproxy.server.transmit.request.register
Classes in io.github.lunasaw.gbproxy.server.transmit.request.register that implement SipRequestProcessorModifier and TypeClassDescriptionclass
Server模块REGISTER请求处理器 只负责SIP协议层面的处理,业务逻辑通过ServerRegisterProcessorHandler接口实现 -
Uses of SipRequestProcessor in io.github.lunasaw.sip.common.transmit
Fields in io.github.lunasaw.sip.common.transmit with type parameters of type SipRequestProcessorModifier and TypeFieldDescriptionprotected static final Map<String,
List<SipRequestProcessor>> AbstractSipListener.REQUEST_PROCESSOR_MAP
对SIP事件进行处理Methods in io.github.lunasaw.sip.common.transmit that return types with arguments of type SipRequestProcessorModifier and TypeMethodDescriptionAbstractSipListener.getRequestProcessors
(String method) 获取请求处理器列表Methods in io.github.lunasaw.sip.common.transmit with parameters of type SipRequestProcessorModifier and TypeMethodDescriptionvoid
AbstractSipListener.addRequestProcessor
(String method, SipRequestProcessor processor) 添加 request订阅void
AbstractSipListener.removeRequestProcessor
(String method, SipRequestProcessor processor) 移除请求处理器 -
Uses of SipRequestProcessor in io.github.lunasaw.sip.common.transmit.event.message
Classes in io.github.lunasaw.sip.common.transmit.event.message that implement SipRequestProcessor -
Uses of SipRequestProcessor in io.github.lunasaw.sip.common.transmit.event.request
Classes in io.github.lunasaw.sip.common.transmit.event.request that implement SipRequestProcessor