|
virtual const std::string | name () const =0 |
|
virtual const std::string | memberid () const =0 |
| Returns the client's broker-assigned group member id. More...
|
|
virtual int | poll (int timeout_ms)=0 |
| Polls the provided kafka handle for events. More...
|
|
virtual int | outq_len ()=0 |
| Returns the current out queue length. More...
|
|
virtual ErrorCode | metadata (bool all_topics, const Topic *only_rkt, Metadata **metadatap, int timeout_ms)=0 |
| Request Metadata from broker. More...
|
|
virtual ErrorCode | pause (std::vector< TopicPartition * > &partitions)=0 |
| Pause producing or consumption for the provided list of partitions. More...
|
|
virtual ErrorCode | resume (std::vector< TopicPartition * > &partitions)=0 |
| Resume producing or consumption for the provided list of partitions. More...
|
|
virtual ErrorCode | query_watermark_offsets (const std::string &topic, int32_t partition, int64_t *low, int64_t *high, int timeout_ms)=0 |
| Query broker for low (oldest/beginning) and high (newest/end) offsets for partition. More...
|
|
virtual ErrorCode | get_watermark_offsets (const std::string &topic, int32_t partition, int64_t *low, int64_t *high)=0 |
| Get last known low (oldest/beginning) and high (newest/end) offsets for partition. More...
|
|
virtual ErrorCode | offsetsForTimes (std::vector< TopicPartition * > &offsets, int timeout_ms)=0 |
| Look up the offsets for the given partitions by timestamp. More...
|
|
virtual Queue * | get_partition_queue (const TopicPartition *partition)=0 |
| Retrieve queue for a given partition. More...
|
|
virtual ErrorCode | set_log_queue (Queue *queue)=0 |
| Forward librdkafka logs (and debug) to the specified queue for serving with one of the ..poll() calls. More...
|
|
virtual void | yield ()=0 |
| Cancels the current callback dispatcher (Producer::poll(), Consumer::poll(), KafkaConsumer::consume(), etc). More...
|
|
virtual const std::string | clusterid (int timeout_ms)=0 |
| Returns the ClusterId as reported in broker metadata. More...
|
|
virtual struct rd_kafka_s * | c_ptr ()=0 |
| Returns the underlying librdkafka C rd_kafka_t handle. More...
|
|
virtual int32_t | controllerid (int timeout_ms)=0 |
| Returns the current ControllerId (controller broker id) as reported in broker metadata. More...
|
|
Base handle, super class for specific clients.
virtual ErrorCode RdKafka::Handle::get_watermark_offsets |
( |
const std::string & |
topic, |
|
|
int32_t |
partition, |
|
|
int64_t * |
low, |
|
|
int64_t * |
high |
|
) |
| |
|
pure virtual |
Get last known low (oldest/beginning) and high (newest/end) offsets for partition.
The low offset is updated periodically (if statistics.interval.ms is set) while the high offset is updated on each fetched message set from the broker.
If there is no cached offset (either low or high, or both) then OFFSET_INVALID will be returned for the respective offset.
Offsets are returned in *low
and *high
respectively.
- Returns
- RdKafka::ERR_NO_ERROR on success or an error code on failure.
virtual ErrorCode RdKafka::Handle::offsetsForTimes |
( |
std::vector< TopicPartition * > & |
offsets, |
|
|
int |
timeout_ms |
|
) |
| |
|
pure virtual |
Look up the offsets for the given partitions by timestamp.
The returned offset for each partition is the earliest offset whose timestamp is greater than or equal to the given timestamp in the corresponding partition.
The timestamps to query are represented as offset
in offsets
on input, and offset()
will return the closest earlier offset for the timestamp on output.
The function will block for at most timeout_ms
milliseconds.
- Returns
- an error code for general errors, else RdKafka::ERR_NO_ERROR in which case per-partition errors might be set.