API
interactor_messageâ
Declaration
typedef struct interactor_message
{
uint64_t id;
uint64_t source;
uint64_t target;
uint64_t owner;
uint64_t method;
void* input;
size_t input_size;
void* output;
size_t output_size;
uint16_t flags;
} interactor_message;
idâ
Message identifier.
source and targetâ
IO_Uring fds for source and target.
ownerâ
Identifier of the message owner.
methodâ
Identifier (or pointer) of the message method.
input and input_sizeâ
Message input payload and size.
output and output_sizeâ
Message output payload and size.
flagsâ
Message additional flags (not using currently).