execute method
Implementation
void execute(Status status) {
_status = status;
if (status.tag == _functionTag) {
if (!_loaded) {
_result = call(_status);
_loaded = true;
}
if (ret != null) {
if (status.data == null) {
status.data = {};
}
status.data[ret] = _result;
}
}
}