You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the issues of this repo and believe that this is not a duplicate.
Feature Request
There is no need for a fixed amount of Invoker commands to execute (on_start, on_finish). A better solution would be a queue which would store and execute commands.
Implementation wise use collections.deque because of the constant time O(1) for poping and appending elements at both ends of the list (https://wiki.python.org/moin/TimeComplexity).
Feature Request
There is no need for a fixed amount of
Invoker
commands to execute (on_start, on_finish). A better solution would be a queue which would store and execute commands.Implementation wise use
collections.deque
because of the constant timeO(1)
for poping and appending elements at both ends of the list (https://wiki.python.org/moin/TimeComplexity).Related to: #51
The text was updated successfully, but these errors were encountered: