Enum nakadion::TypedProcessingStatus[][src]

pub enum TypedProcessingStatus {
    Processed,
    Failed {
        reason: String,
    },
}

This is basically the same as a ProcessingStatus but returned from a TypedBatchHandler.

It is not necessary to report the number of processed events since the TypedBatchHandler itself keeps track of them.

Variants

All events were processed and the cursor may be committed to make progress on the stream.

Processing events failed and the stream should be aborted.

Fields of Failed

Trait Implementations

impl Debug for TypedProcessingStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for TypedProcessingStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TypedProcessingStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for TypedProcessingStatus
[src]

Auto Trait Implementations