Class SqlKillContinuousQueryCommand
- java.lang.Object
-
- org.apache.ignite.internal.sql.command.SqlKillContinuousQueryCommand
-
- All Implemented Interfaces:
SqlCommand
public class SqlKillContinuousQueryCommand extends Object implements SqlCommand
KILL CONTINUOUS command.
-
-
Field Summary
Fields Modifier and Type Field Description static StringKILL_CQ_FORMATKILL CONTINUOUS format message.
-
Constructor Summary
Constructors Constructor Description SqlKillContinuousQueryCommand()Default constructor.SqlKillContinuousQueryCommand(UUID originNodeId, UUID routineId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UUIDgetOriginNodeId()UUIDgetRoutineId()SqlCommandparse(SqlLexer lex)Parse command.StringschemaName()voidschemaName(String schemaName)
-
-
-
Field Detail
-
KILL_CQ_FORMAT
public static final String KILL_CQ_FORMAT
KILL CONTINUOUS format message.- See Also:
- Constant Field Values
-
-
Method Detail
-
parse
public SqlCommand parse(SqlLexer lex)
Parse command.- Specified by:
parsein interfaceSqlCommand- Parameters:
lex- Lexer.- Returns:
- This instance.
-
schemaName
public String schemaName()
- Specified by:
schemaNamein interfaceSqlCommand- Returns:
- Schema name.
-
schemaName
public void schemaName(String schemaName)
- Specified by:
schemaNamein interfaceSqlCommand- Parameters:
schemaName- Schema name.
-
getRoutineId
public UUID getRoutineId()
- Returns:
- Routine id.
-
getOriginNodeId
public UUID getOriginNodeId()
- Returns:
- Origin node id.
-
-