[][src]Struct eventstore::AllCatchupSubscribe

pub struct AllCatchupSubscribe { /* fields omitted */ }

Like RegularCatchupSubscribe but specific to the system stream '$all'.

Implementations

impl AllCatchupSubscribe[src]

When using projections, you can have links placed into another stream. If you set true, the server will resolve those links and will return the event that the link points to. Default: NoResolution.

pub fn start_position(self, start_pos: Position) -> Self[src]

Starting point in the transaction journal log. By default, it will start at Revision::Start.

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

Performs the command with the given credentials.

pub fn filter(self, filter: FilterConf) -> Self[src]

Filters events or streams based upon a predicate.

pub async fn execute(
    self
) -> Result<Box<dyn Stream<Item = Result<SubEvent>> + Send + Unpin>>
[src]

Preforms the catching up phase of the subscription asynchronously. When it will reach the head of stream, the command will emit a volatile subscription request.

pub async fn execute_event_appeared_only(
    self
) -> Result<Box<dyn Stream<Item = Result<ResolvedEvent>> + Send + Unpin>>
[src]

Runs the subscription command. Filter out all subscription events that are not SubEvent::EventAppeared.

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]