Improve FifoEvent, ActiveMethod, ActiveResult (#4211)

Co-authored-by: Alexander B <bas524@ya.ru>
This commit is contained in:
Alexander B
2023-11-22 02:59:24 +03:00
committed by GitHub
parent f30d759c08
commit 4a9285c997
22 changed files with 748 additions and 16 deletions

View File

@@ -339,9 +339,8 @@ protected:
}
NotifyAsyncParams params = par;
TArgs retArgs(params.args);
params.ptrStrat->notify(params.pSender, retArgs);
return retArgs;
params.ptrStrat->notify(params.pSender, params.args);
return params.args;
}
TStrategy _strategy; /// The strategy used to notify observers.