Struct sea_streamer::SeaConsumer

source ·
pub struct SeaConsumer { /* private fields */ }
Available on crate feature sea-streamer-socket only.
Expand description

sea-streamer-socket concrete type of Consumer.

Trait Implementations§

source§

impl Consumer for SeaConsumer

§

type Error = BackendErr

§

type Message<'a> = SeaMessage<'a>

§

type NextFuture<'a> = NextFuture<'a>

§

type Stream<'a> = SeaMessageStream<'a>

source§

async fn seek( &mut self, to: OffsetDateTime ) -> Result<(), StreamErr<BackendErr>>

Seek all streams to an arbitrary point in time. It will start consuming from the earliest message with a timestamp later than to. Read more
source§

async fn rewind(&mut self, pos: SeqPos) -> Result<(), StreamErr<BackendErr>>

Rewind all streams to a particular sequence number. Read more
source§

fn assign( &mut self, ss: (StreamKey, ShardId) ) -> Result<(), StreamErr<BackendErr>>

Assign this consumer to a particular shard. Can be called multiple times to assign to multiple shards. Returns error StreamKeyNotFound if the stream is not currently subscribed. Read more
source§

fn unassign( &mut self, ss: (StreamKey, ShardId) ) -> Result<(), StreamErr<BackendErr>>

Unassign a shard. Returns error StreamKeyNotFound if the stream is not currently subscribed. Returns error StreamKeyEmpty if all streams have been unassigned.
source§

fn next(&self) -> <SeaConsumer as Consumer>::NextFuture<'_>

Poll and receive one message: it awaits until there are new messages. This method can be called from multiple threads.
source§

fn stream<'a, 'b>(&'b mut self) -> <SeaConsumer as Consumer>::Stream<'a>
where 'b: 'a,

Returns an async stream. You cannot create multiple streams from the same consumer, nor perform any operation while streaming.
source§

impl Debug for SeaConsumer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<KafkaConsumer> for SeaConsumer

source§

fn from(i: KafkaConsumer) -> SeaConsumer

Converts to this type from the input type.
source§

impl From<StdioConsumer> for SeaConsumer

source§

fn from(i: StdioConsumer) -> SeaConsumer

Converts to this type from the input type.
source§

impl SeaStreamerBackend for SeaConsumer

§

type Kafka = KafkaConsumer

§

type Stdio = StdioConsumer

source§

fn backend(&self) -> Backend

Identifies the underlying backend
source§

fn get_kafka( &mut self ) -> Option<&mut <SeaConsumer as SeaStreamerBackend>::Kafka>

Get the concrete type for the Kafka backend. None if it’s another Backend
source§

fn get_stdio( &mut self ) -> Option<&mut <SeaConsumer as SeaStreamerBackend>::Stdio>

Get the concrete type for the Stdio backend. None if it’s another Backend

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.