FailOverExecutionControlProvider
, JdiExecutionControlProvider
, LocalExecutionControlProvider
public interface ExecutionControlProvider
Modifier and Type | Method | Description |
---|---|---|
default Map |
defaultParameters() |
Create and return the default parameter map for this ExecutionControlProvider . |
ExecutionControl |
generate |
Create and return the ExecutionControl instance. |
String |
name() |
The unique name of this ExecutionControlProvider . |
String name()
ExecutionControlProvider
. The name must be a sequence of characters from the Basic Multilingual Plane which are Character.isJavaIdentifierPart(char)
.default Map<String,String> defaultParameters()
ExecutionControlProvider
. The map can optionally be modified; Modified or unmodified it can be passed to generate(jdk.jshell.spi.ExecutionEnv, java.util.Map)
.ExecutionControl generate(ExecutionEnv env, Map<String,String> parameters) throws Throwable
ExecutionControl
instance.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.jshell/jdk/jshell/spi/ExecutionControlProvider.html