Enum stage_ordering

Enum Documentation

enum concore::v1::stage_ordering

The possible ordering constraints for a stage in a pipeline.

Values:

enumerator in_order

All the items are processed in the order they were started, one at a time.

enumerator out_of_order

Items are processed one at a time, but not necessarily in a specific order.

enumerator concurrent

No constraints; all items can be processed concurrently.