Class EventingFunctionState
- java.lang.Object
-
- com.couchbase.client.java.manager.eventing.EventingFunctionState
-
public class EventingFunctionState extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EventingFunctionDeploymentStatusdeploymentStatus()The current deployment status.booleanequals(Object o)inthashCode()Stringname()The name of the eventing function.longnumBootstrappingNodes()The number of nodes which are currently bootstrapping.longnumDeployedNodes()The number of deployed nodes.EventingFunctionProcessingStatusprocessingStatus()The current processing status.EventingFunctionStatusstatus()The status the function is currently in (including transitional states).StringtoString()
-
-
-
Method Detail
-
name
public String name()
The name of the eventing function.
-
status
public EventingFunctionStatus status()
The status the function is currently in (including transitional states).
-
numBootstrappingNodes
public long numBootstrappingNodes()
The number of nodes which are currently bootstrapping.
-
numDeployedNodes
public long numDeployedNodes()
The number of deployed nodes.
-
deploymentStatus
public EventingFunctionDeploymentStatus deploymentStatus()
The current deployment status.
-
processingStatus
public EventingFunctionProcessingStatus processingStatus()
The current processing status.
-
-