Uses of Class
io.trino.execution.TaskState
-
Packages that use TaskState Package Description io.trino.execution io.trino.operator -
-
Uses of TaskState in io.trino.execution
Fields in io.trino.execution with type parameters of type TaskState Modifier and Type Field Description static Set<TaskState>TaskState. TERMINAL_TASK_STATESMethods in io.trino.execution that return TaskState Modifier and Type Method Description TaskStateTaskStateMachine. getState()TaskStateTaskStatus. getState()TaskStateSqlTask. getTaskState()static TaskStateTaskState. valueOf(String name)Returns the enum constant of this type with the specified name.static TaskState[]TaskState. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.trino.execution that return types with arguments of type TaskState Modifier and Type Method Description com.google.common.util.concurrent.ListenableFuture<TaskState>TaskStateMachine. getStateChange(TaskState currentState)Methods in io.trino.execution with parameters of type TaskState Modifier and Type Method Description static TaskStatusTaskStatus. failWith(TaskStatus taskStatus, TaskState state, List<ExecutionFailureInfo> exceptions)com.google.common.util.concurrent.ListenableFuture<TaskState>TaskStateMachine. getStateChange(TaskState currentState)Method parameters in io.trino.execution with type arguments of type TaskState Modifier and Type Method Description voidSqlTask. addStateChangeListener(StateMachine.StateChangeListener<TaskState> stateChangeListener)Listener is always notified asynchronously using a dedicated notification thread pool so, care should be taken to avoid leakingthiswhen adding a listener in a constructor.voidSqlTaskManager. addStateChangeListener(TaskId taskId, StateMachine.StateChangeListener<TaskState> stateChangeListener)voidTaskManager. addStateChangeListener(TaskId taskId, StateMachine.StateChangeListener<TaskState> stateChangeListener)Adds a state change listener to the specified task.voidTaskStateMachine. addStateChangeListener(StateMachine.StateChangeListener<TaskState> stateChangeListener)Listener is always notified asynchronously using a dedicated notification thread pool so, care should be taken to avoid leakingthiswhen adding a listener in a constructor.Constructors in io.trino.execution with parameters of type TaskState Constructor Description TaskStatus(TaskId taskId, String taskInstanceId, long version, TaskState state, URI self, String nodeId, Set<Lifespan> completedDriverGroups, List<ExecutionFailureInfo> failures, int queuedPartitionedDrivers, int runningPartitionedDrivers, boolean outputBufferOverutilized, io.airlift.units.DataSize physicalWrittenDataSize, io.airlift.units.DataSize memoryReservation, io.airlift.units.DataSize systemMemoryReservation, io.airlift.units.DataSize revocableMemoryReservation, long fullGcCount, io.airlift.units.Duration fullGcTime, long dynamicFiltersVersion) -
Uses of TaskState in io.trino.operator
Methods in io.trino.operator that return TaskState Modifier and Type Method Description TaskStateTaskContext. getState()
-