Interface Monitorable
-
- All Known Implementing Classes:
MonitorableImpl
,PartitionRangeReadCommand
,PartitionRangeReadCommand.VirtualTablePartitionRangeReadCommand
,ReadCommand
,SinglePartitionReadCommand
,SinglePartitionReadCommand.VirtualTableSinglePartitionReadCommand
public interface Monitorable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
abort()
boolean
complete()
long
creationTimeNanos()
boolean
isAborted()
boolean
isCompleted()
boolean
isCrossNode()
boolean
isInProgress()
boolean
isSlow()
java.lang.String
name()
long
slowTimeoutNanos()
long
timeoutNanos()
-
-
-
Method Detail
-
name
java.lang.String name()
-
creationTimeNanos
long creationTimeNanos()
-
timeoutNanos
long timeoutNanos()
-
slowTimeoutNanos
long slowTimeoutNanos()
-
isInProgress
boolean isInProgress()
-
isAborted
boolean isAborted()
-
isCompleted
boolean isCompleted()
-
isSlow
boolean isSlow()
-
isCrossNode
boolean isCrossNode()
-
abort
boolean abort()
-
complete
boolean complete()
-
-