-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move updates from merge/slots; ensure passing tests * move run_response from Node object to Actor object; execute response functions asynchronously * update documentation && change the signature of processing-related actor methods * remove overwrite_current_node_in_processing method * allow asynchronous condition functions * update tutorial * fix merge errors * make import absolute * Apply suggestions by @RLKRo Apply suggestions by @RLKRo Co-authored-by: Roman Zlobin <[email protected]> * Update actor & group removing context assignment statements * test responses for None; use validate_label once * return context from the 'pipeline' service group * update tutorial tests for script/core; * Remove random seed; use seed value of 42 * Deprecate overwrite_current_node * update deprecation details * fix: try to resolve docs bug * update docs * Update signature typings * revert tutorial changes Special tests for parallel processing will be added instead. * remove overwrite_current_node_in_processing instead of deprecating I decided that the next release will be 1.0, so we can remove instead of deprecating. * remove most context returns; update docs and typing * fix actor test * codestyle * add parallel processing test * make global/local/node conditions run sequentially As I said before it doesn't make much sense that they run in parallel while conditions in them run sequentially. * replace args, kwargs with update_ctx_misc Also includes some doc and typing updates * codestyle * fix typing * line collapse * rename function to fit inside code blocks * fix tutorial function signatures --------- Co-authored-by: Roman Zlobin <[email protected]>
- Loading branch information
1 parent
8bfe13b
commit 677ee7a
Showing
39 changed files
with
429 additions
and
410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from .interface import MessengerInterface, PollingMessengerInterface, CallbackMessengerInterface, CLIMessengerInterface | ||
from .types import PipelineRunnerFunction, PollingInterfaceLoopFunction | ||
from .types import PollingInterfaceLoopFunction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.