Uses of Enum Class
dev.tachyonmcp.api.server.features.tasks.TaskState
Packages that use TaskState
Package
Description
Domain types for MCP protocol data structures.
Task feature types and handler interfaces.
Protocol interfaces and domain types for MCP server and client interaction.
Task registry implementations for managing long-running task operations.
-
Uses of TaskState in dev.tachyonmcp.api.server.domain
Methods in dev.tachyonmcp.api.server.domain that return TaskState -
Uses of TaskState in dev.tachyonmcp.api.server.features.tasks
Methods in dev.tachyonmcp.api.server.features.tasks that return TaskStateModifier and TypeMethodDescriptionstatic TaskStateReturns the enum constant of this class with the specified name.static TaskState[]TaskState.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in dev.tachyonmcp.api.server.features.tasks with parameters of type TaskState -
Uses of TaskState in dev.tachyonmcp.core.protocol
Methods in dev.tachyonmcp.core.protocol that return TaskStateModifier and TypeMethodDescriptionProtocolRequestMapper.TaskStatusRequest.state()Returns the value of thestaterecord component.Constructors in dev.tachyonmcp.core.protocol with parameters of type TaskStateModifierConstructorDescriptionTaskStatusRequest(String taskId, TaskState state, @Nullable String message) Creates an instance of aTaskStatusRequestrecord class. -
Uses of TaskState in dev.tachyonmcp.core.server.features.tasks
Methods in dev.tachyonmcp.core.server.features.tasks that return TaskStateMethods in dev.tachyonmcp.core.server.features.tasks with parameters of type TaskStateModifier and TypeMethodDescriptionbooleanTaskEntry.transitionTo(TaskState newStatus) Transitions tonewStatuswithout a result value.booleanTaskEntry.transitionTo(TaskState newStatus, @Nullable TaskResult result) Transitions tonewStatus, publishingresult(when non-null).booleanDefaultTaskRegistry.updateStatus(String taskId, TaskState newStatus, @Nullable String statusMessage) booleanTaskRegistry.updateStatus(String taskId, TaskState newStatus, @Nullable String statusMessage) Constructors in dev.tachyonmcp.core.server.features.tasks with parameters of type TaskStateModifierConstructorDescriptionTaskEntry(TaskDescriptor descriptor, String id, TaskState status, double ttl) TaskEntry(TaskDescriptor descriptor, String id, TaskState status, double ttl, @Nullable String sessionId) TaskEntry(TaskDescriptor descriptor, String id, TaskState status, @Nullable Duration ttl, @Nullable String sessionId, @Nullable ProgressToken progressToken) TaskEntry(TaskDescriptor descriptor, String id, TaskState status, @Nullable Duration ttl, @Nullable String sessionId, @Nullable ProgressToken progressToken, @Nullable Map<String, Object> meta) TaskEntry(TaskDescriptor descriptor, String id, TaskState status, @Nullable Duration ttl, @Nullable String sessionId, @Nullable ProgressToken progressToken, @Nullable Map<String, Object> meta, Duration keepAlive) TaskEntry(TaskDescriptor descriptor, String id, TaskState status, @Nullable Duration ttl, @Nullable String sessionId, @Nullable ProgressToken progressToken, @Nullable Map<String, Object> meta, Duration keepAlive, @Nullable Duration pollInterval)