[][src]Struct eventstore::commands::WriteEvents

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

Command that sends events to a given stream.

Methods

impl<'a> WriteEvents<'a>[src]

pub fn set_events(self, events: Vec<EventData>) -> WriteEvents<'a>[src]

Sets events to write in the command. This function will replace previously added events.

pub fn push_event(self, event: EventData) -> WriteEvents<'a>[src]

Adds an event to the current list of events to send to the server.

pub fn append_events<T>(self, events: T) -> WriteEvents<'a> where
    T: IntoIterator<Item = EventData>, 
[src]

Extends the current set of events to send the the server with the given iterator.

pub fn require_master(self, require_master: bool) -> WriteEvents<'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 expected_version(self, version: ExpectedVersion) -> WriteEvents<'a>[src]

Asks the server to check that the stream receiving the event is at the given expected version. Default: types::ExpectedVersion::Any.

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

Performs the command with the given credentials.

pub fn execute(self) -> impl Future<Item = WriteResult, Error = OperationError>[src]

Sends asynchronously the write command to the server.

Auto Trait Implementations

impl<'a> Send for WriteEvents<'a>

impl<'a> Sync for WriteEvents<'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