Gemfire JavaDocs_test
Package org.apache.geode.cache.query
Interface CqState
-
public interface CqState
This interface gives information on the state of a CqQuery. It is provided by the getState method of the CqQuery instance.- Since:
- GemFire 5.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isClosed()
Returns true if the CQ is in Closed state.boolean
isClosing()
Returns true if the CQ is in Closing state.boolean
isRunning()
Returns true if the CQ is in Running state.boolean
isStopped()
Returns true if the CQ is in Stopped state.java.lang.String
toString()
Returns the state in string form.
-
-
-
Method Detail
-
toString
java.lang.String toString()
Returns the state in string form.- Overrides:
toString
in classjava.lang.Object
-
isRunning
boolean isRunning()
Returns true if the CQ is in Running state.- Returns:
- whether the CQ is in Running state.
-
isStopped
boolean isStopped()
Returns true if the CQ is in Stopped state.- Returns:
- whether the CQ is in Stopped state.
-
isClosed
boolean isClosed()
Returns true if the CQ is in Closed state.- Returns:
- whether the CQ is in Closed state.
-
isClosing
boolean isClosing()
Returns true if the CQ is in Closing state.- Returns:
- whether the CQ is in Closing state.
-
-