Unity Scopes API
|
Abstract base class to be notified of request completion (such as a query or activation request). More...
#include <unity/scopes/ListenerBase.h>
Public Member Functions | |
virtual void | finished (CompletionDetails const &details)=0 |
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... | |
Abstract base class to be notified of request completion (such as a query or activation request).
|
pure virtual |
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. |
Implemented in unity::scopes::utility::BufferedResultForwarder, and unity::scopes::ActivationListenerBase.
|
virtual |
Called by the scopes run time each time a scope reports additional information about the reply to a query.
More than one info() call can arrive during processing of a single query.
Calls to info() are made by an arbitrary thread.
Exceptions thrown from info() are ignored.
op_info | Contains all details of the information being reported. |