Enum Class 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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescription<T extends org.infinispan.remoting.transport.raft.RaftStateMachine>
TgetOrRegisterStateMachine
(String channelName, Supplier<T> supplier, org.infinispan.remoting.transport.raft.RaftChannelConfiguration configuration) boolean
boolean
raftId()
removeMembers
(String raftId) void
start()
Invoked on component startvoid
stop()
Invoked on component stopstatic EmptyRaftManager
Returns the enum constant of this class with the specified name.static EmptyRaftManager[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getOrRegisterStateMachine
-
isRaftAvailable
public boolean isRaftAvailable() -
hasLeader
-
raftId
-
addMember
-
removeMembers
-
raftMembers
-
start
public void start()Description copied from interface:Lifecycle
Invoked on component start -
stop
public void stop()Description copied from interface:Lifecycle
Invoked on component stop
-