[][src]Struct eventio::kafka::Input

pub struct Input { /* fields omitted */ }

Event reader for Apache Kafka.

Methods

impl Input[src]

pub fn new(
    data_channel: Sender<Event>,
    ack_channel: Receiver<EntryLocation>,
    hosts: Vec<String>,
    group: String,
    client_id: String,
    topic: String,
    fetch_limit: usize
) -> Result<Self, Error>
[src]

Creates Input that fetches at most fetch_limit entries from the given Kafka topic.

Trait Implementations

impl Input for Input[src]

type Data = Event

type Ack = EntryLocation

Auto Trait Implementations

impl Send for Input

impl Sync for Input

impl Unpin for Input

impl UnwindSafe for Input

impl RefUnwindSafe for Input

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,