minos.plugins.kafka.publisher
Classes
Kafka Broker Publisher class. |
|
Kafka Broker Publisher Builder class. |
- class KafkaBrokerPublisher[source]
Bases:
BrokerPublisher
,KafkaCircuitBreakerMixin
Kafka Broker Publisher class.
- property client: aiokafka.producer.producer.AIOKafkaProducer
Get the client instance.
- Returns
An
AIOKafkaProducer
instance.
- property circuit_breaker: aiomisc.circuit_breaker.CircuitBreaker
Get the circuit breaker.
- Returns
A
CircuitBreaker
instance.
- property circuit_breaker_exceptions: tuple[type[Exception]]
Get the circuit breaker exceptions.
- Returns
A tuple of
Exception
types.
- async destroy()
Destroy miscellaneous repository things.
- Returns
This method does not return anything.
- Return type
None
- classmethod from_config(config=None, **kwargs)
Build a new instance from config.
- Parameters
config (Optional[Union[Config, Path]]) – Config instance. If None is provided, default config is chosen.
kwargs – Additional named arguments.
- Returns
A instance of the called class.
- Return type
S
- classmethod get_builder()
Get the builder class.
- Returns
A
Builder
instance.- Return type
Builder[Ins]
- property is_circuit_breaker_broken: bool
Check if circuit breaker is passing.
- Returns
A
bool
instance.
- property is_circuit_breaker_passing: bool
Check if circuit breaker is passing.
- Returns
A
bool
instance.
- property is_circuit_breaker_recovering: bool
Check if circuit breaker is passing.
- Returns
A
bool
instance.
- async send(message)
Send a message.
- Parameters
message (BrokerMessage) – The message to be sent.
- Returns
This method does not return anything.
- Return type
None
- classmethod set_builder(builder)
Set a builder class.
- Parameters
builder (Union[Builder[Ins], type[minos.common.builders.Builder[~Ins]]]) – The builder class to be set.
- Returns
This method does not return anything.
- Return type
None
- async setup()
Setup miscellaneous repository things.
- Returns
This method does not return anything.
- Return type
None
- class KafkaBrokerPublisherBuilder[source]
Bases:
BrokerPublisherBuilder
[KafkaBrokerPublisher
],KafkaBrokerBuilderMixin
Kafka Broker Publisher Builder class.
- __init__(*args, queue_builder=None, queued_cls=None, **kwargs)
- Parameters
queue_builder (Optional[Builder]) –
queued_cls (Optional[type[QueuedBrokerPublisher]]) –
- build()
Build the instance.
- Returns
A
QueuedBrokerSubscriber
instance.- Return type
- copy()
Get a copy of the instance.
- Returns
A
Builder
instance.- Parameters
self (type[~B]) –
- Return type
B
- async destroy()
Destroy miscellaneous repository things.
- Returns
This method does not return anything.
- Return type
None
- classmethod from_config(config=None, **kwargs)
Build a new instance from config.
- Parameters
config (Optional[Union[Config, Path]]) – Config instance. If None is provided, default config is chosen.
kwargs – Additional named arguments.
- Returns
A instance of the called class.
- Return type
S
- classmethod new()
Get a new instance.
- Returns
A
Builder
instance.- Return type
B
- async setup()
Setup miscellaneous repository things.
- Returns
This method does not return anything.
- Return type
None
- with_cls(cls)
Set class to be built.
- Parameters
cls (type) – The class to be set.
self (B) –
- Returns
This method return the builder instance.
- Return type
B
- with_config(config)
Set config.
- Parameters
config (Config) – The config to be set.
- Returns
This method return the builder instance.
- with_kwargs(kwargs)
Set kwargs.
- with_queue(queue)
Set the queue builder.
- Parameters
queue (Union[type[BrokerPublisherQueue], Builder[BrokerPublisherQueue]]) – The queue builder to be set.
- Returns
This method return the builder instance.
- with_queued_cls(queued_cls)
Set the queued class.
- Parameters
queued_cls (type[QueuedBrokerPublisher]) – A subclass of
QueuedBrokerPublisher
.- Returns
This method return the builder instance.