Uses of Interface
jdk.jshell.spi.ExecutionControlProvider
| Package | Description | 
|---|---|
| jdk.jshell | Provides interfaces for creating tools, such as a Read-Eval-Print Loop (REPL),
 which interactively evaluate "snippets" of Java programming language code. | 
| jdk.jshell.execution | Provides implementation support for building JShell execution engines. | 
- 
Uses of ExecutionControlProvider in jdk.jshellMethods in jdk.jshell with parameters of type ExecutionControlProvider Modifier and Type Method Description JShell.BuilderJShell.Builder. executionEngine(ExecutionControlProvider executionControlProvider, Map<String,String> executionControlParameters)Sets the custom engine for execution.
- 
Uses of ExecutionControlProvider in jdk.jshell.executionClasses in jdk.jshell.execution that implement ExecutionControlProvider Modifier and Type Class Description classFailOverExecutionControlProviderTries other providers in sequence until one works.classJdiExecutionControlProviderA provider of remote JDI-controlled execution engines.classLocalExecutionControlProviderA provider of execution engines which run in the same process as JShell.