Interface ProtocolManager<P extends BaseInterceptor,R extends org.apache.activemq.artemis.core.server.routing.RoutingHandler>
-
- All Known Implementing Classes:
AbstractProtocolManager
public interface ProtocolManager<P extends BaseInterceptor,R extends org.apache.activemq.artemis.core.server.routing.RoutingHandler>Info: ProtocolManager is loaded byRemotingServiceImpl.loadProtocolManagerFactories(Iterable)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleanacceptsNoHandshake()If this protocols accepts connectoins without an initial handshake.voidaddChannelHandlers(io.netty.channel.ChannelPipeline pipeline)ConnectionEntrycreateConnectionEntry(Acceptor acceptorUsed, Connection connection)ProtocolManagerFactory<P>getFactory()java.util.Map<org.apache.activemq.artemis.api.core.SimpleString,org.apache.activemq.artemis.api.core.RoutingType>getPrefixes()RgetRoutingHandler()java.lang.StringgetSecurityDomain()voidhandleBuffer(RemotingConnection connection, org.apache.activemq.artemis.api.core.ActiveMQBuffer buffer)voidhandshake(org.apache.activemq.artemis.core.remoting.impl.netty.NettyServerConnection connection, org.apache.activemq.artemis.api.core.ActiveMQBuffer buffer)booleanisProtocol(byte[] array)default voidremoveHandler(java.lang.String name)voidsetAnycastPrefix(java.lang.String anycastPrefix)voidsetMulticastPrefix(java.lang.String multicastPrefix)voidsetSecurityDomain(java.lang.String securityDomain)voidupdateInterceptors(java.util.List<BaseInterceptor> incomingInterceptors, java.util.List<BaseInterceptor> outgoingInterceptors)This method will receive all the interceptors on the system and you should filter them out *java.util.List<java.lang.String>websocketSubprotocolIdentifiers()A list of the IANA websocket subprotocol identifiers (https://www.iana.org/assignments/websocket/websocket.xhtml) supported by this protocol manager.
-
-
-
Method Detail
-
getFactory
ProtocolManagerFactory<P> getFactory()
-
updateInterceptors
void updateInterceptors(java.util.List<BaseInterceptor> incomingInterceptors, java.util.List<BaseInterceptor> outgoingInterceptors)
This method will receive all the interceptors on the system and you should filter them out *- Parameters:
incomingInterceptors-outgoingInterceptors-
-
createConnectionEntry
ConnectionEntry createConnectionEntry(Acceptor acceptorUsed, Connection connection)
-
removeHandler
default void removeHandler(java.lang.String name)
-
handleBuffer
void handleBuffer(RemotingConnection connection, org.apache.activemq.artemis.api.core.ActiveMQBuffer buffer)
-
addChannelHandlers
void addChannelHandlers(io.netty.channel.ChannelPipeline pipeline)
-
isProtocol
boolean isProtocol(byte[] array)
-
acceptsNoHandshake
boolean acceptsNoHandshake()
If this protocols accepts connectoins without an initial handshake. If true this protocol will be the failback case no other connections are made. New designed protocols should always require a handshake. This is only useful for legacy protocols.
-
handshake
void handshake(org.apache.activemq.artemis.core.remoting.impl.netty.NettyServerConnection connection, org.apache.activemq.artemis.api.core.ActiveMQBuffer buffer)
-
websocketSubprotocolIdentifiers
java.util.List<java.lang.String> websocketSubprotocolIdentifiers()
A list of the IANA websocket subprotocol identifiers (https://www.iana.org/assignments/websocket/websocket.xhtml) supported by this protocol manager. These are used during the websocket subprotocol handshake.- Returns:
- A list of subprotocol ids
-
setAnycastPrefix
void setAnycastPrefix(java.lang.String anycastPrefix)
-
setMulticastPrefix
void setMulticastPrefix(java.lang.String multicastPrefix)
-
getPrefixes
java.util.Map<org.apache.activemq.artemis.api.core.SimpleString,org.apache.activemq.artemis.api.core.RoutingType> getPrefixes()
-
setSecurityDomain
void setSecurityDomain(java.lang.String securityDomain)
-
getSecurityDomain
java.lang.String getSecurityDomain()
-
getRoutingHandler
R getRoutingHandler()
-
-