Interface JChannelCommandDispatcherFactory.Configuration
- Enclosing class:
JChannelCommandDispatcherFactory
public static interface JChannelCommandDispatcherFactory.Configuration
Configuration for a
JChannelCommandDispatcherFactory.- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptionorg.jgroups.JChannelReturns the channel associated with this command dispatcher factory.Returns the marshaller associated with this command dispatcher factory.Returns a factory for creating command dispatcher specific marshaller.Predicate<org.jgroups.Message> Returns a predicate that determines whether a given message is associated with an unknown fork channel.
-
Method Details
-
getUnknownForkPredicate
Predicate<org.jgroups.Message> getUnknownForkPredicate()Returns a predicate that determines whether a given message is associated with an unknown fork channel.- Returns:
- a predicate that determines whether a given message is associated with an unknown fork channel.
-
getChannel
org.jgroups.JChannel getChannel()Returns the channel associated with this command dispatcher factory.- Returns:
- the channel associated with this command dispatcher factory.
-
getMarshaller
ByteBufferMarshaller getMarshaller()Returns the marshaller associated with this command dispatcher factory.- Returns:
- the marshaller associated with this command dispatcher factory.
-
getMarshallerFactory
Function<ClassLoader, ByteBufferMarshaller> getMarshallerFactory()Returns a factory for creating command dispatcher specific marshaller.- Returns:
- a factory for creating command dispatcher specific marshaller.
-