Package akka.cluster.sharding.typed
Interface NumberOfProcesses
-
- All Known Implementing Classes:
ShardedDaemonProcessCoordinator.GetNumberOfProcessesReply
public interface NumberOfProcesses
Reply forGetNumberOfProcesses
Not for user extension
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
numberOfProcesses()
boolean
rescaleInProgress()
long
revision()
Revision number increased for every re-scale that has been triggered withChangeNumberOfProcesses
java.time.Instant
started()
The timestamp when the change to the current number of processes was initiated.
-
-
-
Method Detail
-
numberOfProcesses
int numberOfProcesses()
-
rescaleInProgress
boolean rescaleInProgress()
-
revision
long revision()
Revision number increased for every re-scale that has been triggered withChangeNumberOfProcesses
-
started
java.time.Instant started()
The timestamp when the change to the current number of processes was initiated. If the number is the initial number of processes this value is "some time" after cluster startup.
-
-