SObjectizer
5.5
|
Parameters for advanced receive from mchain. More...
#include <mchain.hpp>
Public Member Functions | |
mchain_receive_params_t (mchain_t chain) | |
Initializing constructor. More... | |
const mchain_t & | chain () const |
Chain from which messages must be extracted and handled. More... | |
![]() | |
actual_type & | extract_n (std::size_t v) |
Set limit for count of messages to be extracted. More... | |
std::size_t | to_extract () const |
Get limit for count of messages to be extracted. More... | |
actual_type & | handle_n (std::size_t v) |
Set limit for count of messages to be handled. More... | |
std::size_t | to_handle () const |
Get limit for count of message to be handled. More... | |
actual_type & | empty_timeout (Timeout v) |
Set timeout for waiting on empty chain. More... | |
const mchain_props::duration_t & | empty_timeout () const |
Get timeout for waiting on empty chain. More... | |
actual_type & | no_wait_on_empty () |
Disable waiting on the empty queue. More... | |
actual_type & | total_time (Timeout v) |
Set total time for the whole receive operation. More... | |
const mchain_props::duration_t & | total_time () const |
Get total time for the whole receive operation. More... | |
actual_type & | stop_on (stop_predicate predicate) |
Set user condition for stopping receive operation. More... | |
const stop_predicate & | stop_on () const |
Get user condition for stopping receive operation. More... | |
actual_type & | on_close (chain_closed_handler handler) |
Set handler for chain-closed event. More... | |
const chain_closed_handler & | closed_handler () const |
Get handler for chain-closed event. More... | |
Private Attributes | |
mchain_t | m_chain |
Chain from which messages must be extracted and handled. More... | |
Additional Inherited Members | |
![]() | |
using | actual_type = mchain_receive_params_t |
Actual type of params. More... | |
using | stop_predicate = std::function< bool() > |
Type of stop-predicate. More... | |
using | chain_closed_handler = std::function< void(const mchain_t &) > |
Type of chain-closed event. More... | |
![]() | |
actual_type & | self_reference () |
Parameters for advanced receive from mchain.
|
inline |
Initializing constructor.
chain | Chain from which messages must be extracted and handled. |
|
inline |
Chain from which messages must be extracted and handled.
|
private |
Chain from which messages must be extracted and handled.