Bases: AsyncConfluentFastProducer
connect
connect(producer, serializer)
Source code in faststream/confluent/publisher/producer.py
| def connect(
self,
producer: "AsyncConfluentProducer",
serializer: Optional["SerializerProto"],
) -> None:
raise NotImplementedError
|
disconnect
async
Source code in faststream/confluent/publisher/producer.py
| async def disconnect(self) -> None:
raise NotImplementedError
|
flush
async
Source code in faststream/confluent/publisher/producer.py
| async def flush(self) -> None:
raise NotImplementedError
|
ping
async
Source code in faststream/confluent/publisher/producer.py
| async def ping(self, timeout: float) -> bool:
raise NotImplementedError
|
publish
async
Source code in faststream/confluent/publisher/producer.py
| @override
async def publish(
self,
cmd: "KafkaPublishCommand",
) -> "asyncio.Future[Message | None] | Message | None":
raise NotImplementedError
|
publish_batch
async
Source code in faststream/confluent/publisher/producer.py
| @override
async def publish_batch(self, cmd: "KafkaPublishCommand") -> None:
raise NotImplementedError
|
request
async
Source code in faststream/confluent/publisher/producer.py
| @override
async def request(self, cmd: "KafkaPublishCommand") -> Any:
msg = "Kafka doesn't support `request` method without test client."
raise FeatureNotSupportedException(msg)
|