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: str, partition: int, offset: int) -> None
Source code in faststream/confluent/message.py
| async def seek(
self,
topic: str,
partition: int,
offset: int,
) -> None: ...
|