Package io.a2a.server.tasks
Class InMemoryTaskStore
java.lang.Object
io.a2a.server.tasks.InMemoryTaskStore
- All Implemented Interfaces:
TaskStateProvider,TaskStore
@ApplicationScoped
public class InMemoryTaskStore
extends Object
implements TaskStore, TaskStateProvider
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidbooleanisTaskActive(String taskId) Determines whether a task is considered active for queue management purposes.booleanisTaskFinalized(String taskId) Determines whether a task is in a final state, ignoring the grace period.void
-
Constructor Details
-
InMemoryTaskStore
public InMemoryTaskStore()
-
-
Method Details
-
save
-
get
-
delete
-
isTaskActive
Description copied from interface:TaskStateProviderDetermines whether a task is considered active for queue management purposes.This method includes the grace period in its check. A task is considered active if:
- Its state is not final, OR
- Its state is final but finalized within the grace period (now < finalizedAt + gracePeriod)
This method is used to decide whether to process late-arriving events.
- Specified by:
isTaskActivein interfaceTaskStateProvider- Parameters:
taskId- the ID of the task to check- Returns:
trueif the task is active (or recently finalized within grace period),falseotherwise
-
isTaskFinalized
Description copied from interface:TaskStateProviderDetermines whether a task is in a final state, ignoring the grace period.This method performs an immediate check: returns
trueonly if the task is in a final state (COMPLETED, CANCELED, FAILED, etc.), regardless of when it was finalized.This method is used by cleanup callbacks and MainQueue closing logic to decide whether a queue can be closed and removed. By ignoring the grace period, it ensures responsive cleanup while late in-flight events are still handled by the grace period mechanism for
isTaskActive.- Specified by:
isTaskFinalizedin interfaceTaskStateProvider- Parameters:
taskId- the ID of the task to check- Returns:
trueif the task is in a final state (ignoring grace period),falseotherwise
-