On this page
Interface ExecutionEnv
public interface ExecutionEnv
This interface is designed to provide the access to core JShell functionality needed to implement ExecutionControl.
- Since:
- 9
- See Also:
Method Summary
Modifier and Type | Method | Description |
---|---|---|
void |
closeDown() |
Reports that the execution engine has shutdown.
|
List<String> |
extraRemoteVMOptions() |
Returns the additional VM options to be used when launching the remote JVM.
|
PrintStream |
userErr() |
Returns the user's error stream.
|
InputStream |
userIn() |
Returns the user's input stream.
|
PrintStream |
userOut() |
Returns the user's output stream.
|
Method Details
userIn
InputStream userIn()
- Returns:
- the user's input stream
userOut
PrintStream userOut()
- Returns:
- the user's output stream
userErr
PrintStream userErr()
- Returns:
- the user's error stream
extraRemoteVMOptions
List<String> extraRemoteVMOptions()
Note: an execution engine need not launch a remote JVM.
- Returns:
- the additional options with which to launch the remote JVM
closeDown
void closeDown()
© 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/spi/ExecutionEnv.html