Interface ActiveQuery
- 
- All Superinterfaces:
- java.io.Serializable
 - All Known Implementing Classes:
- ActiveQueryImpl
 
 public interface ActiveQuery extends java.io.SerializableA class that describes an active query
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classActiveQuery.StatementType
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetQuery()Returns the query that is being runlonggetStartTime()Returns the system time in millis that this query started running at.java.util.UUIDgetStatementId()Returns a UUID of the statement for later lookupActiveQuery.StatementTypegetStatementType()What kind of statement is this query executing in?
 
- 
- 
- 
Method Detail- 
getQueryjava.lang.String getQuery() Returns the query that is being run
 - 
getStatementTypeActiveQuery.StatementType getStatementType() What kind of statement is this query executing in?
 - 
getStatementIdjava.util.UUID getStatementId() Returns a UUID of the statement for later lookup
 - 
getStartTimelong getStartTime() Returns the system time in millis that this query started running at.
 
- 
 
-