Struct flo_stream::ExpiringPublisher[][src]

pub struct ExpiringPublisher<Message> { /* fields omitted */ }
Expand description

An ‘expiring’ publisher is one that responds to backpressure from its subscribers by expiring the most recent message.

Usually when a subscriber stalls in processing, a publisher will refuse to accept further messages and block. This will avoid blocking by instead expiring messages that cannot be processed.

This is useful in a few situations. One important example is distributing state: say you want to indicate to another thread what your current state is, but if it’s busy you don’t want to wait for it to consume the previous state before you can finish updating the latest state.

Another example is signalling. An ExpiringPublisher<()> can be used to signal that an event has occurred but will not block if all subscribers have not responded in the case where the event occurs multiple times.

Implementations

Creates a new expiring publisher with a particular buffer size

Once a subscriber has buffer_size messages, this publisher will start to drop the oldest messages.

Counts the number of subscribers in this publisher

Creates a duplicate publisher that can be used to publish to the same streams as this object

Trait Implementations

Executes the destructor for this type. Read more

Subscribes to this publisher

Subscribers only receive messages sent to the publisher after they are created.

Reserves a space for a message with the subscribers, returning when it’s ready

Waits until all subscribers have consumed all pending messages

Returns true if this publisher is closed (will not publish any further messages to its subscribers)

Future that returns when this publisher is closed

Publishes a message to the subscribers of this object Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.