Implements: IMessageQueue, IConfigurable, IReferenceable
Description
The MessageQueue class allows you to create a message queue that is used as a basis for specific message queue implementions.
Configuration parameters
- name: name of the message queue
connection(s):
- discovery_key: key to retrieve parameters from discovery service
- protocol: connection protocol like http, https, tcp, udp
- host: host name or IP address
- port: port number
- uri: resource URI or connection string with all parameters in it
credential(s):
- store_key: key to retrieve parameters from credential store
- username: username
- password: user’s password
- access_id: application access id
- access_key: application secret key
References
- *:logger:*:*:1.0 - (optional) ILogger components to pass log messages
- *:counters:*:*:1.0 - (optional) ICounters components to pass collected measurements
- *:discovery:*:*:1.0 - (optional) IDiscovery components to discover connection(s)
- *:credential-store:*:*:1.0 - (optional) ICredentialStore componetns to lookup credential(s)
Constructors
Creates a new instance of the message queue.
MessageQueue(name: str = None, capabilities: MessagingCapabilities = None)
- name: str - (optional) queue name
- capabilities: MessagingCapabilities - (optional) capabilities of this message queue
Fields
Abstract methods
abandon
Returns a message into the queue and makes it available for all subscribers to receive it again. This method is usually used to return a message which could not be processed at the moment to repeat the attempt. Messages that cause unrecoverable errors shall be removed permanently or/and sent to dead letter queue.
abstractmethod
abandon(message: MessageEnvelope)
- message: MessageEnvelope - message to return.
clear
Clears a component’s state.
abstractmethod
clear(context: Optional[IContext])
- context: IContext - (optional) a context to trace execution through a call chain.
close
Closes a component and frees the used resources.
abstractmethod
close(context: Optional[IContext])
- context: IContext - (optional) a context to trace execution through a call chain.
complete
Permanently removes a message from the queue. This method is usually used to remove the message after successful processing.
abstractmethod
complete(message: MessageEnvelope)
- message: MessageEnvelope - message to remove.
end_listen
Ends listening for incoming messages. When this method is called, listen unblocks the thread and execution continues.
abstractmethod
end_listen(context: Optional[IContext])
- context: IContext - (optional) a context to trace execution through a call chain.
is_open
Checks if the component is opened.
abstractmethod
is_open(): bool
- returns: bool - True if the component has been opened and False otherwise.
listen
Listens for incoming messages and blocks the current thread until the queue is closed.
See also IMessageReceiver, receive
abstractmethod
listen(context: Optional[IContext], receiver: IMessageReceiver)
- context: IContext - (optional) a context to trace execution through a call chain.
- receiver: IMessageReceiver - receiver used to receive incoming messages.
move_to_dead_letter
Permanently removes a message from the queue and sends it to dead letter queue.
abstractmethod
move_to_dead_letter(message: MessageEnvelope)
- message: MessageEnvelope - message to be removed.
peek
Peeks a single incoming message from the queue without removing it. If there are no messages available in the queue, it returns None.
abstractmethod
peek(context: Optional[IContext]): MessageEnvelope
- context: IContext - (optional) a context to trace execution through a call chain.
- returns: MessageEnvelope - peeked message or None.
peek_batch
Peeks multiple incoming messages from the queue without removing them. If there are no messages available in the queue, it returns an empty list.
abstractmethod
peek_batch(context: Optional[IContext], message_count: int): List[MessageEnvelope]
- context: IContext - (optional) a context to trace execution through a call chain.
- message_count: int - maximum number of messages to peek.
- returns: List[MessageEnvelope] - list of peeked messages
read_message_count
Reads the current number of messages in the queue to be delivered.
abstractmethod
read_message_count(): int
- returns: int - number of messages in the queue.
receive
Receives an incoming message and removes it from the queue.
abstractmethod
receive(context: Optional[IContext], wait_timeout: int): MessageEnvelope
- context: IContext - (optional) a context to trace execution through a call chain.
- wait_timeout: int - timeout in milliseconds to wait for a message to come.
- returns: MessageEnvelope - received message or None.
renew_lock
Renews a lock on a message that makes it invisible from other receivers in the queue. This method is usually used to extend the message processing time.
abstractmethod
renew_lock(message: MessageEnvelope, lock_timeout: int)
- message: MessageEnvelope - message to extend its lock.
- lock_timeout: int - locking timeout in milliseconds.
send
Sends a message into the queue.
abstractmethod
send(context: Optional[IContext], envelope: MessageEnvelope)
- context: IContext - (optional) a context to trace execution through a call chain.
- envelope: MessageEnvelope - message envelop to be sent.
send_as_object
Sends an object into the queue. Before sending the object is converted into JSON string and wrapped in a MessageEnvelope.
abstractmethod
send_as_object(context: Optional[IContext], message_type: str, message: Any)
- context: IContext - (optional) a context to trace execution through a call chain.
- message_type: str - a message type
- message: Any - an object value to be sent
Instance methods
begin_listen
Listens for incoming messages without blocking the current thread.
See also listen, IMessageReceiver
begin_listen(context: Optional[IContext], receiver: IMessageReceiver)
- context: IContext - (optional) a context to trace execution through a call chain.
- receiver: IMessageReceiver - receiver used to receive incoming messages.
configure
Configures the component by passing its configuration parameters.
configure(config: ConfigParams)
- config: ConfigParams - configuration parameters to be set.
get_capabilities
Gets the queue capabilities
get_capabilities(): MessagingCapabilities
- returns: MessagingCapabilities - queue’s capabilities object.
get_name
Gets the queue name
get_name(): str
- returns: str - queue name.
open
Opens the component.
open(context: Optional[IContext])
- context: IContext - (optional) a context to trace execution through a call chain.
send_as_object
Sends an object into the queue. Before sending it, the object is converted into a JSON string and wrapped in a MessageEnvelope.
send_as_object(context: Optional[IContext], message_type: str, message: Any)
- context: IContext - (optional) a context to trace execution through a call chain.
- message_type: str - message type
- message: Any - object value to be sent
set_references
Sets references to dependent components.
set_references(references: IReferences)
- references: IReferences - references to locate the component dependencies.
to_string
Gets a string representation of the object.
to_string(): str
- returns: str - string representation of the object.
_open_with_params
Opens the component with the given connection and credential parameters.
_open_with_params(context: Optional[IContext], connections: List[ConnectionParams], credentials: CredentialParams)
- context: IContext - (optional) a context to trace execution through a call chain.
- connections: List[ConnectionParams] - connection parameters
- credentials: CredentialParams - credential parameters
_check_open
Checks if the queue has been opened.
_check_open(context: Optional[IContext])
- context: IContext - (optional) a context to trace execution through a call chain.
- returns: Exception - an exception if queue wasn’t opened or None otherwise