Package org.jgroups.conf
Interface ProtocolStackConfigurator
-
- All Superinterfaces:
ProtocolHook
- All Known Implementing Classes:
XmlConfigurator
public interface ProtocolStackConfigurator extends ProtocolHook
- Version:
- 1.0
- Author:
- Filip Hanik (filip@filip.net), Bela Ban
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
afterCreation(Protocol prot)
Invoked after eachProtocol
is instantiated and beforeProtocol.init()
is invoked.java.util.List<ProtocolConfiguration>
getProtocolStack()
java.lang.String
getProtocolStackString()
-
-
-
Method Detail
-
getProtocolStackString
java.lang.String getProtocolStackString()
-
getProtocolStack
java.util.List<ProtocolConfiguration> getProtocolStack()
-
afterCreation
default void afterCreation(Protocol prot) throws java.lang.Exception
Invoked after eachProtocol
is instantiated and beforeProtocol.init()
is invoked.- Specified by:
afterCreation
in interfaceProtocolHook
- Parameters:
prot
- The protocol that was created.- Throws:
java.lang.Exception
- If any exception occurred during method invocation.
-
-