context
field in your script. For example:public void apply() { context.echo("Hello World"); }
abort(String message)
will abort the script. It can be listened by an Exception listener
public String execute() { var other = context.createScript("otherScript.groovy"); return other.compute(); }
public interface Script extends ContextListener { public int computeResult(int value) { } }Note that:
context
field in the script. For example to show a message on the logger:public void execute(int value) { context.echo("My value:" + value); }
ScriptWrapper<Script> wrapper = new GroovyScriptWrapper<Script>() { protected ScriptContext getScriptContext() { return null; } };
Copyright 2019-2020 Herve Girod. All Rights Reserved. Documentation and source under the BSD licence