Interface IExecutionListener
-
- All Known Implementing Classes:
EglOutputBufferPrintExecutionListener
,ExecutionProfiler
,ProfilingExecutionListener
,PropertyAccessExecutionListener
,RuleProfiler
public interface IExecutionListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
aboutToExecute(ModuleElement ast, IEolContext context)
void
finishedExecuting(ModuleElement ast, Object result, IEolContext context)
void
finishedExecutingWithException(ModuleElement ast, EolRuntimeException exception, IEolContext context)
-
-
-
Method Detail
-
aboutToExecute
void aboutToExecute(ModuleElement ast, IEolContext context)
-
finishedExecuting
void finishedExecuting(ModuleElement ast, Object result, IEolContext context)
- Parameters:
result
- the result of evaluating ast, calculated during execution
-
finishedExecutingWithException
void finishedExecutingWithException(ModuleElement ast, EolRuntimeException exception, IEolContext context)
-
-