Enum nakadion::api::CommitStatus[][src]

pub enum CommitStatus {
    AllOffsetsIncreased,
    NotAllOffsetsIncreased,
    NothingToCommit,
}

A commit attempt can result in multiple statusses

Variants

All the cursors have been successfully committed and all of them increased the offset of a cursor

All the cursors have been successfully committed and at least one of them did not increase an offset.

This usually happens when committing a keep alive line

There was nothing to commit.

Trait Implementations

impl Debug for CommitStatus
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations