Interface ClientStandbyStatusMBean
-
- All Superinterfaces:
StandbyStatusMBean
- All Known Implementing Classes:
StandbyClientSync
public interface ClientStandbyStatusMBean extends StandbyStatusMBean
-
-
Field Summary
-
Fields inherited from interface org.apache.jackrabbit.oak.segment.standby.jmx.StandbyStatusMBean
JMX_NAME, STATUS_CLOSED, STATUS_CLOSING, STATUS_INITIALIZING, STATUS_RUNNING, STATUS_STARTING, STATUS_STOPPED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
calcFailedRequests()
int
calcSecondsSinceLastSuccess()
void
cleanup()
int
getFailedRequests()
int
getSecondsSinceLastSuccess()
long
getSyncEndTimestamp()
long
getSyncStartTimestamp()
-
-
-
Method Detail
-
getFailedRequests
@Description("number of consecutive failed requests") int getFailedRequests()
-
getSecondsSinceLastSuccess
@Description("number of seconds since last successful request") int getSecondsSinceLastSuccess()
-
getSyncStartTimestamp
@Description("Local timestamp of the moment when the last sync cycle was started") long getSyncStartTimestamp()
-
getSyncEndTimestamp
@Description("Local timestamp of the moment when the last sync cycle ended") long getSyncEndTimestamp()
-
calcFailedRequests
@Description("number of consecutive failed requests") int calcFailedRequests()
-
calcSecondsSinceLastSuccess
@Description("number of seconds since last successful request") int calcSecondsSinceLastSuccess()
-
cleanup
@Description("Runs garbage collection") void cleanup()
-
-