|
SObjectizer 5.8
|
A result of attempt of sending messages to a message chain. More...
#include <mchain.hpp>
Public Member Functions | |
| mchain_send_result_t () noexcept | |
| Default constructor. | |
| mchain_send_result_t (std::size_t sent, mchain_props::push_status_t status) | |
| Initializing constructor. | |
| std::size_t | sent () const noexcept |
| Count of messages sent. | |
| mchain_props::push_status_t | status () const noexcept |
| Status of send operation. | |
Private Attributes | |
| std::size_t | m_sent |
| Count of messages sent. | |
| mchain_props::push_status_t | m_status |
| The status of send operation. | |
A result of attempt of sending messages to a message chain.
This type plays the same role as mchain_receive_result_t but is used for send operations.
Definition at line 978 of file mchain.hpp.
|
inlinenoexcept |
Default constructor.
Sets push_status_t::not_stored status.
Definition at line 991 of file mchain.hpp.
|
inline |
Initializing constructor.
Definition at line 997 of file mchain.hpp.
|
inlinenodiscardnoexcept |
Count of messages sent.
Definition at line 1007 of file mchain.hpp.
|
inlinenodiscardnoexcept |
Status of send operation.
Definition at line 1012 of file mchain.hpp.
|
private |
Count of messages sent.
Definition at line 981 of file mchain.hpp.
|
private |
The status of send operation.
Definition at line 984 of file mchain.hpp.