Struct sea_streamer_kafka::KafkaStreamer

source ·
pub struct KafkaStreamer { /* private fields */ }

Trait Implementations§

source§

impl Clone for KafkaStreamer

source§

fn clone(&self) -> KafkaStreamer

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for KafkaStreamer

source§

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

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

impl Streamer for KafkaStreamer

source§

async fn disconnect(self) -> KafkaResult<()>

It will flush all producers

source§

async fn create_consumer( &self, streams: &[StreamKey], options: Self::ConsumerOptions ) -> KafkaResult<Self::Consumer>

If ConsumerMode is RealTime, auto commit will be disabled and it always stream from latest. group_id must not be set.

If ConsumerMode is Resumable, it will use a group id unique to this host: on a physical machine, it will use the mac address. Inside a docker container, it will use the container id. So when the process restarts, it will resume from last committed offset. group_id must not be set.

If ConsumerMode is LoadBalanced, shards will be divided-and-assigned by the broker to consumers sharing the same group_id. group_id must already be set.

If you need to override the HOST ID, you can set the ENV var HOST_ID.

§

type Error = KafkaError

§

type Producer = KafkaProducer

§

type Consumer = KafkaConsumer

§

type ConnectOptions = KafkaConnectOptions

§

type ConsumerOptions = KafkaConsumerOptions

§

type ProducerOptions = KafkaProducerOptions

source§

async fn connect( uri: StreamerUri, options: Self::ConnectOptions ) -> KafkaResult<Self>

Establish a connection to the streaming server.
source§

async fn create_generic_producer( &self, options: Self::ProducerOptions ) -> KafkaResult<Self::Producer>

Create a producer that can stream to any stream key.
source§

fn create_producer( &self, stream: StreamKey, options: Self::ProducerOptions ) -> impl Future<Output = Result<Self::Producer, StreamErr<Self::Error>>> + Send

Create a producer that streams to the specified stream.

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.