Interface ProtocolStackConfiguration
-
public interface ProtocolStackConfigurationDefines the configuration of a JGroups protocol stack.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()StringgetNodeName()List<ProtocolConfiguration<? extends org.jgroups.stack.Protocol>>getProtocols()Optional<RelayConfiguration>getRelay()org.jboss.as.network.SocketBindingManagergetSocketBindingManager()TransportConfiguration<? extends org.jgroups.protocols.TP>getTransport()booleanisStatisticsEnabled()
-
-
-
Method Detail
-
getName
String getName()
-
isStatisticsEnabled
boolean isStatisticsEnabled()
-
getTransport
TransportConfiguration<? extends org.jgroups.protocols.TP> getTransport()
-
getProtocols
List<ProtocolConfiguration<? extends org.jgroups.stack.Protocol>> getProtocols()
-
getNodeName
String getNodeName()
-
getRelay
Optional<RelayConfiguration> getRelay()
-
getSocketBindingManager
org.jboss.as.network.SocketBindingManager getSocketBindingManager()
-
-