Enum EmptyRaftManager

java.lang.Object
java.lang.Enum<EmptyRaftManager>
org.infinispan.remoting.transport.impl.EmptyRaftManager
All Implemented Interfaces:
Serializable, Comparable<EmptyRaftManager>, Lifecycle, org.infinispan.remoting.transport.raft.RaftManager

public enum EmptyRaftManager extends Enum<EmptyRaftManager> implements org.infinispan.remoting.transport.raft.RaftManager
A NO-OP implementation of RaftManager.

This implementation is used when RAFT is not supported by the Transport.

Since:
14.0
  • Enum Constant Details

  • Method Details

    • values

      public static EmptyRaftManager[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EmptyRaftManager valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getOrRegisterStateMachine

      public <T extends org.infinispan.remoting.transport.raft.RaftStateMachine> T getOrRegisterStateMachine(String channelName, Supplier<T> supplier, org.infinispan.remoting.transport.raft.RaftChannelConfiguration configuration)
    • isRaftAvailable

      public boolean isRaftAvailable()
    • hasLeader

      public boolean hasLeader(String channelName)
    • raftId

      public String raftId()
    • start

      public void start()
      Description copied from interface: Lifecycle
      Invoked on component start
      Specified by:
      start in interface Lifecycle
    • stop

      public void stop()
      Description copied from interface: Lifecycle
      Invoked on component stop
      Specified by:
      stop in interface Lifecycle