Skip to content

FakeConsumer

faststream.confluent.message.FakeConsumer #

A fake Kafka consumer.

commit async #

commit()
Source code in faststream/confluent/message.py
async def commit(self) -> None:
    pass

seek async #

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