Skip to content
Snippets Groups Projects
Commit 39350bc1 authored by Stefano Borini's avatar Stefano Borini Committed by GitHub
Browse files

Merge pull request #96 from force-h2020/add_after_execution_method

Add after_execution method for the UIHooks
parents 8484c302 355ff836
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,16 @@ class BaseUIHooksManager(HasStrictTraits): ...@@ -29,6 +29,16 @@ class BaseUIHooksManager(HasStrictTraits):
The pyface envisage task. 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): def before_save(self, task):
"""Hook that is called just before saving a given model to disk """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 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