Bases: Protocol
A protocol for Kafka consumers.
commit async
Source code in faststream/confluent/message.py
| async def commit(self) -> None: ...
|
seek async
seek(topic, partition, offset)
Source code in faststream/confluent/message.py
| async def seek(
self,
topic: Optional[str],
partition: Optional[int],
offset: Optional[int],
) -> None: ...
|