We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An Activity should be able to handle being called without being a subscriber callback. That is, you should be able to call an activity.
Example:
class MyActivity(Activity): pass activity = MyActivity(...) activity() # Stuff happens
Sometimes an activity can be triggered without listening on events, for example when creating a tool that sends activity triggered,started,finished.
Activities should be allowed to be used as activities started and not just activities triggered.
Ease of use.
Maybe pinning too much functionality to the activity object.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
An Activity should be able to handle being called without being a subscriber callback.
That is, you should be able to call an activity.
Example:
Motivation
Sometimes an activity can be triggered without listening on events, for example when creating a tool that sends activity triggered,started,finished.
Exemplification
Activities should be allowed to be used as activities started and not just activities triggered.
Benefits
Ease of use.
Possible Drawbacks
Maybe pinning too much functionality to the activity object.
The text was updated successfully, but these errors were encountered: