Uses of Class
jdk.jshell.spi.ExecutionControl.EngineTerminationException
-
Packages that use ExecutionControl.EngineTerminationException 软件包 描述 jdk.jshell.execution 提供构建JShell执行引擎的实现支持。jdk.jshell.spi 定义可插拔JShell执行引擎的服务提供程序接口。 -
-
Uses of ExecutionControl.EngineTerminationException in jdk.jshell.execution
Methods in jdk.jshell.execution that throw ExecutionControl.EngineTerminationException Modifier and Type 方法 描述 void
DirectExecutionControl. addToClasspath(String cp)
void
LoaderDelegate. addToClasspath(String path)
将路径添加到执行类路径。void
StreamingExecutionControl. addToClasspath(String path)
protected void
DirectExecutionControl. classesRedefined(ExecutionControl.ClassBytecodes[] cbcs)
通知类已被重新定义。Object
DirectExecutionControl. extensionCommand(String command, Object arg)
Object
StreamingExecutionControl. extensionCommand(String command, Object arg)
String
DirectExecutionControl. invoke(String className, String methodName)
String
JdiDefaultExecutionControl. invoke(String classname, String methodname)
String
StreamingExecutionControl. invoke(String classname, String methodname)
void
DirectExecutionControl. load(ExecutionControl.ClassBytecodes[] cbcs)
void
LoaderDelegate. load(ExecutionControl.ClassBytecodes[] cbcs)
尝试加载新类。void
StreamingExecutionControl. load(ExecutionControl.ClassBytecodes[] cbcs)
void
DirectExecutionControl. redefine(ExecutionControl.ClassBytecodes[] cbcs)
void
JdiExecutionControl. redefine(ExecutionControl.ClassBytecodes[] cbcs)
重新定义指定的类。void
RemoteExecutionControl. redefine(ExecutionControl.ClassBytecodes[] cbcs)
远程重新定义处理只用于注册重新定义的类void
StreamingExecutionControl. redefine(ExecutionControl.ClassBytecodes[] cbcs)
void
DirectExecutionControl. stop()
中断一个正在运行的调用。void
JdiDefaultExecutionControl. stop()
通过操作远程变量并通过JDI发送停止来中断正在运行的远程调用。void
LocalExecutionControl. stop()
void
RemoteExecutionControl. stop()
void
StreamingExecutionControl. stop()
String
DirectExecutionControl. varValue(String className, String varName)
String
RemoteExecutionControl. varValue(String className, String varName)
String
StreamingExecutionControl. varValue(String classname, String varname)
protected VirtualMachine
JdiDefaultExecutionControl. vm()
protected abstract VirtualMachine
JdiExecutionControl. vm()
返回JDIVirtualMachine
实例。 -
Uses of ExecutionControl.EngineTerminationException in jdk.jshell.spi
Methods in jdk.jshell.spi that throw ExecutionControl.EngineTerminationException Modifier and Type 方法 描述 void
ExecutionControl. addToClasspath(String path)
将路径添加到执行类路径。Object
ExecutionControl. extensionCommand(String command, Object arg)
运行非标准命令(或较新版本的标准命令)。String
ExecutionControl. invoke(String className, String methodName)
通过调用指定的包装类上的方法来调用可执行代码段。void
ExecutionControl. load(ExecutionControl.ClassBytecodes[] cbcs)
尝试加载新类。void
ExecutionControl. redefine(ExecutionControl.ClassBytecodes[] cbcs)
尝试重新定义以前加载的类。void
ExecutionControl. stop()
中断一个正在运行的调用。String
ExecutionControl. varValue(String className, String varName)
返回变量的值。
-