-
Notifications
You must be signed in to change notification settings - Fork 23
QuantumGate::Extender::PeerEvent::Result
Karel Donk edited this page Dec 10, 2019
·
1 revision
QuantumGate::Extender::PeerEvent::Result is a struct that contains the result of processing a peer event.
struct Result
{
bool Handled{ false };
bool Success{ false };
};| Name | Description |
|---|---|
Handled |
Indicates whether or not the event was recognized and handled (true if so, otherwise false). The default value is false. |
Success |
Indicates whether the event was successfully handled or not (true if so, otherwise false). The default value is false. |