Interface AcceptorFactory
-
- All Known Implementing Classes:
InVMAcceptorFactory,NettyAcceptorFactory
public interface AcceptorFactoryA factory for creating acceptors.An Acceptor is an endpoint that a
Connectorwill connect to and is used by the remoting service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AcceptorcreateAcceptor(String name, ClusterConnection clusterConnection, Map<String,Object> configuration, BufferHandler handler, ServerConnectionLifeCycleListener listener, Executor threadPool, ScheduledExecutorService scheduledThreadPool, Map<String,ProtocolManager> protocolMap)Create a new instance of an Acceptor.
-
-
-
Method Detail
-
createAcceptor
Acceptor createAcceptor(String name, ClusterConnection clusterConnection, Map<String,Object> configuration, BufferHandler handler, ServerConnectionLifeCycleListener listener, Executor threadPool, ScheduledExecutorService scheduledThreadPool, Map<String,ProtocolManager> protocolMap)
Create a new instance of an Acceptor.- Parameters:
name- the name of the acceptorconfiguration- the configurationhandler- the handlerlistener- the listenerthreadPool- the threadpoolscheduledThreadPool- a scheduled thread poolprotocolMap-- Returns:
- an acceptor
-
-