Trait rdkafka::consumer::Consumer [] [src]

pub trait Consumer<C: ConsumerContext> {
    fn get_base_consumer(&self) -> &BaseConsumer<C>;

    fn subscribe(&self, topics: &[&str]) -> KafkaResult<()> { ... }
fn unsubscribe(&self) { ... }
fn assign(&self, assignment: &TopicPartitionList) -> KafkaResult<()> { ... }
fn commit(
        &self,
        topic_partition_list: &TopicPartitionList,
        mode: CommitMode
    ) -> KafkaResult<()> { ... }
fn commit_consumer_state(&self, mode: CommitMode) -> KafkaResult<()> { ... }
fn commit_message(
        &self,
        message: &BorrowedMessage,
        mode: CommitMode
    ) -> KafkaResult<()> { ... }
fn store_offset(&self, message: &BorrowedMessage) -> KafkaResult<()> { ... }
fn subscription(&self) -> KafkaResult<TopicPartitionList> { ... }
fn assignment(&self) -> KafkaResult<TopicPartitionList> { ... }
fn committed(&self, timeout_ms: i32) -> KafkaResult<TopicPartitionList> { ... }
fn offsets_for_timestamp(
        &self,
        timestamp: i64,
        timeout_ms: i32
    ) -> KafkaResult<TopicPartitionList> { ... }
fn position(&self) -> KafkaResult<TopicPartitionList> { ... }
fn fetch_metadata(
        &self,
        topic: Option<&str>,
        timeout_ms: i32
    ) -> KafkaResult<Metadata> { ... }
fn fetch_watermarks(
        &self,
        topic: &str,
        partition: i32,
        timeout_ms: i32
    ) -> KafkaResult<(i64, i64)> { ... }
fn fetch_group_list(
        &self,
        group: Option<&str>,
        timeout_ms: i32
    ) -> KafkaResult<GroupList> { ... } }

Common trait for all consumers.

Required Methods

Returns a reference to the BaseConsumer.

Provided Methods

Subscribe the consumer to a list of topics.

Manually assign topics and partitions to the consumer. If used, automatic consumer rebalance won't be activated.

Commits the offset of the specified message. The commit can be sync (blocking), or async. Notice that when a specific offset is committed, all the previous offsets are considered committed as well. Use this method only if you are processing messages in order.

Commit the current consumer state. Notice that if the consumer fails after a message has been received, but before the message has been processed by the user code, this might lead to data loss. Check the "at-least-once delivery" section in the readme for more information.

Store offset for this message to be used on the next (auto)commit. When using this enable.auto.offset.store should be set to false in the config.

Returns the current topic subscription.

Returns the current partition assignment.

Retrieve committed offsets for topics and partitions.

Lookup the offsets for this consumer's partitions by timestamp.

Retrieve current positions (offsets) for topics and partitions.

Returns the metadata information for the specified topic, or for all topics in the cluster if no topic is specified.

Returns the metadata information for all the topics in the cluster.

Returns the group membership information for the given group. If no group is specified, all groups will be returned.

Implementors