Skip to content

QuantumGate::Extender::SetPeerMessageCallback

Karel Donk edited this page Dec 10, 2019 · 3 revisions

Sets the peer message callback function. It's only possible to set this callback function when the extender isn't running.

This callback function gets called by the QuantumGate instance hosting the extender to allow it to process peer messages.

It's not required to set this callback function.

Signature

Result<> SetPeerMessageCallback(PeerMessageCallback&& function) noexcept;

Parameters

Name Description
function A QuantumGate::Extender::PeerMessageCallback object containing the function that should be called. See QuantumGate Callbacks for more information.

Return values

Returns a QuantumGate::Result object equal to one of the following QuantumGate::ResultCodes:

Value Description
QuantumGate::ResultCode::Succeeded The operation succeeded.
QuantumGate::ResultCode::Failed The operation failed. The extender may have been running.
QuantumGate::ResultCode::InvalidArgument The operation failed because an invalid argument was passed in.
Clone this wiki locally