- setClient(MiniPython.Client) - Method in class com.rogerbinns.MiniPython
-
Callbacks to use for specific behaviour
- setCode(InputStream) - Method in class com.rogerbinns.MiniPython
-
Reads and executes code from the supplied stream
The stream provided must satisfy reads completely (eg if 27 bytes is
asked for then that number should be returned in the read() call unless
end of file is reached.)
- signalError(String, String) - Method in class com.rogerbinns.MiniPython
-
Call this method when your callbacks need to halt execution due to an
error
This method will do the internal bookkeeping necessary in order to
provide diagnostics to the original caller and then throw an
ExecutionError which you should not catch.
- signalError(String, String, Throwable) - Method in class com.rogerbinns.MiniPython
-
Call this method when your callbacks need to halt execution due to an
error
This method will do the internal bookkeeping necessary in order to
provide diagnostics to the original caller and then throw an
ExecutionError which you should not catch.