Unity Scopes API
|
Base class to receive a response to a result activation request. More...
#include <unity/scopes/ActivationListenerBase.h>
Public Member Functions | |
virtual void | activated (ActivationResponse const &response) |
Called once by the scopes run time with the activation response. More... | |
virtual void | finished (CompletionDetails const &details) override |
Called once by the scopes run time after the final result for a request was sent. More... | |
![]() | |
virtual void | info (OperationInfo const &op_info) |
Called by the scopes run time each time a scope reports additional information about the reply to a query. More... | |
Base class to receive a response to a result activation request.
|
virtual |
Called once by the scopes run time with the activation response.
The default implementation does nothing.
response | The response to the activation request, returned by a scope from ActivationQueryBase::activate(). |
|
overridevirtual |
Called once by the scopes run time after the final result for a request was sent.
Calls to finished() are made by an arbitrary thread.
Exceptions thrown from finished() are ignored.
details | Contains details about the completion status of a query as well as any additional information regarding the operation of the request. |
Implements unity::scopes::ListenerBase.