Construct a private broadcast store with optional capacity limits.
Declared in <private_broadcast.h>
explicit
PrivateBroadcast(
size_t max_transactions = MAX_TRANSACTIONS,
size_t max_send_attempts = MAX_SEND_ATTEMPTS);
| Name | Description |
|---|---|
| max_transactions [in] | Cap on the number of simultaneously tracked transactions. Defaults to MAX_TRANSACTIONS. |
| max_send_attempts [in] | Cap on the number of send attempts per transaction. Defaults to MAX_SEND_ATTEMPTS. |