Interface CommandDispatcherContext<CC,MC>
- Type Parameters:
CC- the command context typeMC- the marshalling context type
public interface CommandDispatcherContext<CC,MC>
Encapsulates context of a command dispatcher.
- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptionReturns the command context.org.wildfly.clustering.context.ContextualizerReturns the contextualizer for a command dispatcher.org.wildfly.clustering.marshalling.MarshalledValueFactory<MC> Returns a marshalled value factory.
-
Method Details
-
getCommandContext
-
getContextualizer
org.wildfly.clustering.context.Contextualizer getContextualizer()Returns the contextualizer for a command dispatcher.- Returns:
- the contextualizer for a command dispatcher.
-
getMarshalledValueFactory
org.wildfly.clustering.marshalling.MarshalledValueFactory<MC> getMarshalledValueFactory()Returns a marshalled value factory.- Returns:
- a marshalled value factory.
-