Class LocalExecutionControl
java.lang.Object
jdk.jshell.execution.DirectExecutionControl
jdk.jshell.execution.LocalExecutionControl
- All Implemented Interfaces:
-
AutoCloseable
,ExecutionControl
public class LocalExecutionControl extends DirectExecutionControl
An implementation of
ExecutionControl
which executes in the same JVM as the JShell-core.- Since:
- 9
Nested Class Summary
Nested classes/interfaces declared in interface jdk.jshell.spi.ExecutionControl
ExecutionControl.ClassBytecodes, ExecutionControl.ClassInstallException, ExecutionControl.EngineTerminationException, ExecutionControl.ExecutionControlException, ExecutionControl.InternalException, ExecutionControl.NotImplementedException, ExecutionControl.ResolutionException, ExecutionControl.RunException, ExecutionControl.StoppedException, ExecutionControl.UserException
Constructor Summary
Constructor | Description |
---|---|
LocalExecutionControl() |
Create an instance using the default class loading. |
LocalExecutionControl |
Creates an instance, delegating loader operations to the specified delegate. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
protected void |
clientCodeEnter() |
Marks entry into user code. |
protected void |
clientCodeLeave() |
Marks departure from user code. |
Methods declared in class jdk.jshell.execution.DirectExecutionControl
addToClasspath, classesRedefined, close, extensionCommand, findClass, invoke, invoke, load, redefine, stop, throwConvertedInvocationException, throwConvertedOtherException, valueString, varValue
Constructor Details
LocalExecutionControl
public LocalExecutionControl(LoaderDelegate loaderDelegate)
Creates an instance, delegating loader operations to the specified delegate.
- Parameters:
-
loaderDelegate
- the delegate to handle loading classes
LocalExecutionControl
public LocalExecutionControl()
Create an instance using the default class loading.
Method Details
clientCodeEnter
protected void clientCodeEnter()
Description copied from class:
DirectExecutionControl
Marks entry into user code.
- Overrides:
-
clientCodeEnter
in classDirectExecutionControl
clientCodeLeave
protected void clientCodeLeave()
Description copied from class:
DirectExecutionControl
Marks departure from user code.
- Overrides:
-
clientCodeLeave
in classDirectExecutionControl
© 1993, 2021, 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/17/docs/api/jdk.jshell/jdk/jshell/execution/LocalExecutionControl.html