[][src]Struct eventstore::ConnectToPersistentSubscription

pub struct ConnectToPersistentSubscription { /* fields omitted */ }

A subscription model where the server remembers the state of the consumption of a stream. This allows for many different modes of operations compared to a regular subscription where the client hols the subscription state.

Implementations

impl ConnectToPersistentSubscription[src]

pub fn credentials(self, creds: Credentials) -> Self[src]

Performs the command with the given credentials.

pub fn batch_size(self, batch_size: i32) -> Self[src]

The buffer size to use for the persistent subscription.

pub async fn execute(self) -> Result<(SubscriptionRead, SubscriptionWrite)>[src]

Sends the persistent subscription connection request to the server asynchronously even if the subscription is available right away.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]