Skip to content

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.

Definition

struct Result
{
    bool Handled{ false };
    bool Success{ false };
};

Member variables

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.

Clone this wiki locally