public static class TP.ProtocolAdapter extends Protocol implements DiagnosticsHandler.ProbeHandler
| Modifier and Type | Field and Description |
|---|---|
protected SocketFactory |
socket_factory |
| Constructor and Description |
|---|
TP.ProtocolAdapter(String cluster_name,
Address local_addr,
short transport_id,
Protocol up,
Protocol down,
String pattern) |
| Modifier and Type | Method and Description |
|---|---|
Object |
down(Event evt)
An event is to be sent down the stack.
|
Address |
getAddress() |
String |
getAddressAsString() |
String |
getAddressAsUUID() |
String |
getClusterName() |
Set<Address> |
getMembers() |
String |
getName()
All protocol names have to be unique !
|
SocketFactory |
getSocketFactory()
Returns the SocketFactory associated with this protocol, if overridden in a subclass, or passes the call down
|
ThreadFactory |
getThreadFactory()
Supposed to be overwritten by subclasses.
|
short |
getTransportName() |
Map<String,String> |
handleProbe(String... keys)
Handles a probe.
|
void |
setSocketFactory(SocketFactory factory)
Sets a SocketFactory.
|
void |
start()
This method is called on a
Channel.connect(String). |
void |
stop()
This method is called on a
Channel.disconnect(). |
String[] |
supportedKeys()
Returns a list of supported keys
|
String |
toString() |
destroy, dumpStats, enableStats, getConfigurableObjects, getDownProtocol, getId, getLevel, getProtocolStack, getTransport, getUpProtocol, getValue, init, isErgonomics, printStats, providedDownServices, providedUpServices, requiredDownServices, requiredUpServices, resetStatistics, resetStats, setDownProtocol, setErgonomics, setId, setLevel, setProtocolStack, setUpProtocol, setValue, setValues, statsEnabled, upprotected SocketFactory socket_factory
public String getClusterName()
public Address getAddress()
public String getAddressAsString()
public String getAddressAsUUID()
public short getTransportName()
public ThreadFactory getThreadFactory()
ProtocolgetThreadFactory in class Protocolpublic SocketFactory getSocketFactory()
ProtocolgetSocketFactory in class Protocolpublic void setSocketFactory(SocketFactory factory)
ProtocolTP)
or TP.ProtocolAdaptersetSocketFactory in class Protocolpublic void start()
throws Exception
ProtocolChannel.connect(String). Starts work.
Protocols are connected and queues are ready to receive events.
Will be called from bottom to top. This call will replace
the START and START_OK events.start in class ProtocolException - Thrown if protocol cannot be started successfully. This will cause the ProtocolStack
to fail, so Channel.connect(String) will throw an exceptionpublic void stop()
ProtocolChannel.disconnect(). Stops work (e.g. by closing multicast socket).
Will be called from top to bottom. This means that at the time of the method invocation the
neighbor protocol below is still working. This method will replace the
STOP, STOP_OK, CLEANUP and CLEANUP_OK events. The ProtocolStack guarantees that
when this method is called all messages in the down queue will have been flushedpublic Object down(Event evt)
Protocoldown_prot.down(). In case of a GET_ADDRESS event (which tries to
retrieve the stack's address from one of the bottom layers), the layer may need to send
a new response event back up the stack using up_prot.up().public String getName()
Protocolpublic Map<String,String> handleProbe(String... keys)
DiagnosticsHandler.ProbeHandlerhandleProbe in interface DiagnosticsHandler.ProbeHandlerpublic String[] supportedKeys()
DiagnosticsHandler.ProbeHandlersupportedKeys in interface DiagnosticsHandler.ProbeHandlerCopyright © 2012 JBoss by Red Hat. All Rights Reserved.