Skip to content
Snippets Groups Projects
Commit 355ff836 authored by martinRenou's avatar martinRenou
Browse files

Add after_execution method for the UIHooks

parent 8484c302
No related branches found
No related tags found
1 merge request!96Add after_execution method for the UIHooks
......@@ -29,6 +29,16 @@ class BaseUIHooksManager(HasStrictTraits):
The pyface envisage task.
"""
def after_execution(self, task):
"""Hook that is called after execution of a given evaluation.
Gives a chance to perform operations after the calculation finished.
Parameters
----------
task:
The pyface envisage task.
"""
def before_save(self, task):
"""Hook that is called just before saving a given model to disk
in response to a user action. This does not apply to saving of
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment