Module transact::scheduler[][src]

Expand description

Batch scheduling with transaction execution APIs

A Scheduler is used to execute one or more Batch objects, receiving a BatchExecutionResult as a result of the execution of a Batch. A Batch contains one or more Transaction objects; each Transaction within a Batch is executed and then consolidated to generate a BatchExecutionResult.

In order for a Scheduler to execute batches, its associated SchedulerExecutionInterface must be consumed by a component responsible for iterating over the Transactions and providing ExecutionTaskCompletionNotifications back to the Scheduler via the SchedulerExecutionInterface.

Modules

A Scheduler which runs multiple sub-schedulers. The primary purpose of the MultiScheduler is for testing; it enables running multiple schedulers in parallel to verify that they all produce the same results for a given workload.

A Scheduler which schedules transaction for execution one at time.

Structs

Result of executing a batch.

A transation and associated information required to execute it.

Enums

Traits

Allows sending a notification to the scheduler that execution of a task has completed.

Schedules batches and transactions and returns execution results.

Creates new schedulers