Uses of Interface
sisc.interpreter.SchemeCaller

Packages that use SchemeCaller
sisc.interpreter   
sisc.util   
 

Uses of SchemeCaller in sisc.interpreter
 

Methods in sisc.interpreter with parameters of type SchemeCaller
static java.lang.Object Context.execute(AppContext ctx, SchemeCaller caller)
          Calls caller with an Interpreter bound to the given AppContext with same DynamicEnvironment as the nearest enclosing Interpreter in the same thread that is bound to the same AppContext.
static java.lang.Object Context.execute(DynamicEnvironment dynenv, SchemeCaller caller)
          Obtains an Interpreter bound to the given DynamicEnvironment and invokes caller.execute(Interpreter) with that Interper.
static java.lang.Object Context.execute(SchemeCaller caller)
          Calls caller with an Interpreter that shares the AppContext and DynamicEnvironment with the current Interpreter.
static java.lang.Object Context.execute(java.lang.String appName, SchemeCaller caller)
          Deprecated. use Context.execute(AppContext, SchemeCaller) instead
 

Uses of SchemeCaller in sisc.util
 

Classes in sisc.util that implement SchemeCaller
static class SignalHook.SignalHandler