|
Unity Scopes API
|
Abstract server-side base interface for a query that is executed inside a scope. More...
#include <unity/scopes/QueryBase.h>

Public Member Functions | |
| virtual void | cancelled ()=0 |
| Called by the scopes run time when the query originator cancels a query. More... | |
Abstract server-side base interface for a query that is executed inside a scope.
|
pure virtual |
Called by the scopes run time when the query originator cancels a query.
Your implementation of this method should ensure that the scope stops processing the current query as soon as possible. Any calls to a push() method once a query is cancelled are ignored, so continuing to push after cancellation only wastes CPU cycles.
Implemented in unity::scopes::ActivationQueryBase.