Struct eventstore_tcp::raw::client_messages::UpdatePersistentSubscription
[−]
[src]
pub struct UpdatePersistentSubscription<'a> {
pub subscription_group_name: Cow<'a, str>,
pub event_stream_id: Cow<'a, str>,
pub resolve_link_tos: bool,
pub start_from: i32,
pub message_timeout_milliseconds: i32,
pub record_statistics: bool,
pub live_buffer_size: i32,
pub read_batch_size: i32,
pub buffer_size: i32,
pub max_retry_count: i32,
pub prefer_round_robin: bool,
pub checkpoint_after_time: i32,
pub checkpoint_max_count: i32,
pub checkpoint_min_count: i32,
pub subscriber_max_count: i32,
pub named_consumer_strategy: Option<Cow<'a, str>>,
}Fields
subscription_group_name: Cow<'a, str>
event_stream_id: Cow<'a, str>
resolve_link_tos: bool
start_from: i32
message_timeout_milliseconds: i32
record_statistics: bool
live_buffer_size: i32
read_batch_size: i32
buffer_size: i32
max_retry_count: i32
prefer_round_robin: bool
checkpoint_after_time: i32
checkpoint_max_count: i32
checkpoint_min_count: i32
subscriber_max_count: i32
named_consumer_strategy: Option<Cow<'a, str>>
Methods
impl<'a> UpdatePersistentSubscription<'a>[src]
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Trait Implementations
impl<'a> Debug for UpdatePersistentSubscription<'a>[src]
impl<'a> Default for UpdatePersistentSubscription<'a>[src]
fn default() -> UpdatePersistentSubscription<'a>
Returns the "default value" for a type. Read more
impl<'a> PartialEq for UpdatePersistentSubscription<'a>[src]
fn eq(&self, __arg_0: &UpdatePersistentSubscription<'a>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &UpdatePersistentSubscription<'a>) -> bool
This method tests for !=.
impl<'a> Clone for UpdatePersistentSubscription<'a>[src]
fn clone(&self) -> UpdatePersistentSubscription<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'a> MessageWrite for UpdatePersistentSubscription<'a>[src]
fn get_size(&self) -> usize
Computes necessary binary size of self once serialized in protobuf
fn write_message<W: Write>(&self, w: &mut Writer<W>) -> Result<()>
Writes Self into W writer
fn write_file<P>(&self, p: P) -> Result<(), Error> where P: AsRef<Path>
Writes self into a file