[][src]Struct eventstore::commands::AllCatchupSubscribe

pub struct AllCatchupSubscribe<'a> { /* fields omitted */ }

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

Methods

impl<'a> AllCatchupSubscribe<'a>[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 require_master(self, require_master: bool) -> AllCatchupSubscribe<'a>[src]

Asks the server receiving the command to be the master of the cluster in order to perform the write. Default: false.

pub fn start_position(self, start_pos: Position) -> AllCatchupSubscribe<'a>[src]

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

pub fn credentials(self, creds: Credentials) -> AllCatchupSubscribe<'a>[src]

Performs the command with the given credentials.

pub fn execute(self) -> Subscription[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.

Auto Trait Implementations

impl<'a> Send for AllCatchupSubscribe<'a>

impl<'a> Sync for AllCatchupSubscribe<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T