3#include <randolf/rsocket>
7 /*======================================================================*//**
9 Internal structure that @ref rsocket_group uses to communicate results from
10 mass operations across multiple rsocket objects.
11 @author Randolf Richardson
14 - 2023-Apr-30 v1.00 Initial version
16 *///=========================================================================
17 struct rsocket_group_rc {
18 /// Pointer to instantiated rsocket object
20 /// Number of bytes that were sent
22 /// Pointer to exception that was thrown (if not set to nullptr)
23 std::exception* e = nullptr;
24 }; // -x- struct rsocket_group_rc -x-
26}; // -x- namespace randolf -x-