Interface TaskRepository
- All Known Implementing Classes:
DefaultTaskRepository,NullTaskRepository
public interface TaskRepository
Repository interface that manages task data in a single ObjectStore. This replaces the original TaskHistory interface to
provide a focused storage interface for task-related data.
-
Method Summary
Modifier and TypeMethodDescriptionvoidApplies a function to a task within a transactional context, ensuring thread-safe access to the task data.voidclose()voidvoidupsert(String taskId, TaskRepositoryItem item)
-
Method Details
-
upsert
void upsert(String taskId, TaskRepositoryItem item) throws org.mule.runtime.api.store.ObjectStoreException - Throws:
org.mule.runtime.api.store.ObjectStoreException
-
get
Optional<TaskRepositoryItem> get(String taskId) throws org.mule.runtime.api.exception.ObjectNotFoundException, org.mule.runtime.api.store.ObjectStoreException - Throws:
org.mule.runtime.api.exception.ObjectNotFoundExceptionorg.mule.runtime.api.store.ObjectStoreException
-
remove
- Throws:
org.mule.runtime.api.store.ObjectStoreException
-
close
void close() -
apply
void apply(String taskId, org.mule.runtime.core.api.util.func.CheckedRunnable function) throws org.mule.runtime.api.store.ObjectStoreException Applies a function to a task within a transactional context, ensuring thread-safe access to the task data. This method provides atomic operations on task data by executing the provided function within a synchronized block or transaction boundary.The apply method is designed to handle concurrent access scenarios where multiple operations might need to read, modify, and write task data atomically. It ensures that the entire operation (read-modify-write cycle) is executed as a single unit, preventing race conditions and data inconsistencies.
- Parameters:
taskId- the unique identifier of the task to operate on. Must not be null or empty.function- the function to execute within the transactional context. The function will be executed with exclusive access to the specified task, ensuring thread safety. Must not be null.- Throws:
RuntimeException- if the function execution fails with an unchecked exception.org.mule.runtime.api.store.ObjectStoreException
-