Struct nakadion::SubscriptionId[][src]

pub struct SubscriptionId(pub String);

A SubscriptionId is used to guarantee a continous flow of events for clients.

If an event type is streamed over multiple partitioned multiple clients can consume the event type.

For more information on event types and subscriptions see subscriptions

Methods

impl SubscriptionId
[src]

Trait Implementations

impl Clone for SubscriptionId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SubscriptionId
[src]

Formats the value using the given formatter. Read more

impl Display for SubscriptionId
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations