Interface JChannelCommandDispatcherFactory.Configuration

Enclosing class:
JChannelCommandDispatcherFactory

public static interface JChannelCommandDispatcherFactory.Configuration
Author:
Paul Ferraro
  • Method Summary

    Modifier and Type
    Method
    Description
    org.jgroups.JChannel
    Returns the channel associated with this command dispatcher factory.
    org.wildfly.clustering.marshalling.ByteBufferMarshaller
    Returns the marshaller associated with this command dispatcher factory.
    Function<ClassLoader, org.wildfly.clustering.marshalling.ByteBufferMarshaller>
    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

      org.wildfly.clustering.marshalling.ByteBufferMarshaller getMarshaller()
      Returns the marshaller associated with this command dispatcher factory.
      Returns:
      the marshaller associated with this command dispatcher factory.
    • getMarshallerFactory

      Function<ClassLoader, org.wildfly.clustering.marshalling.ByteBufferMarshaller> getMarshallerFactory()
      Returns a factory for creating command dispatcher specific marshaller.
      Returns:
      a factory for creating command dispatcher specific marshaller.