Enum 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 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()
void
start()
Invoked on component startvoid
stop()
Invoked on component stopstatic EmptyRaftManager
Returns the enum constant of this type with the specified name.static EmptyRaftManager[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getOrRegisterStateMachine
-
isRaftAvailable
public boolean isRaftAvailable() -
hasLeader
-
raftId
-
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
-