Enum Class EmptyRaftManager

java.lang.Object
java.lang.Enum<EmptyRaftManager>
org.infinispan.remoting.transport.impl.EmptyRaftManager
All Implemented Interfaces:
Serializable, Comparable<EmptyRaftManager>, Constable, 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 Link icon

  • Method Details Link icon

    • values Link icon

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

      public static EmptyRaftManager valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getOrRegisterStateMachine Link icon

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

      public boolean isRaftAvailable()
    • hasLeader Link icon

      public boolean hasLeader(String channelName)
    • raftId Link icon

      public String raftId()
    • addMember Link icon

      public CompletionStage<Void> addMember(String raftId)
    • removeMembers Link icon

      public CompletionStage<Void> removeMembers(String raftId)
    • raftMembers Link icon

      public Collection<String> raftMembers()
    • start Link icon

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

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