The method that actually does the work of handling the action, whatever that entails.
The method that actually does the work of handling the action, whatever that entails. Arguments are the Scope that receieved the action, and, for convenience, its associated RecordManager.
The method is invoked on the RecordManager
's associated
worker thread if the action was sent as scope!action
,
and on the calling thread if it was sent instead as
scope.onThisThread(action)
.
Utility class for declare new Scope-specific actions, to do whatever is defined in the corresponding
act
method.Useful mainly if you're defining one of your own (e.g., to support an ORM extension like SoftDelete).