Skip to content

QuantumGate::Extender::SetStartupCallback

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

Sets the startup 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 begin initialization and startup.

It's not required to set this callback function.

Signature

Result<> SetStartupCallback(StartupCallback&& function) noexcept;

Parameters

Name Description
function A QuantumGate::Extender::StartupCallback 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