Interface ProxyInfo.Exec

Enclosing interface:
ProxyInfo

public static interface ProxyInfo.Exec
Information about process that should be executed when initializing a proxy.
  • Method Summary

    Modifier and Type
    Method
    Description
    default List<String>
    Command line arguments to pass along to the executing process.
    default Optional<String>
    Optional command to run.
    default List<String>
    List of Java options to make available to the process.
  • Method Details

    • command

      default Optional<String> command()
      Optional command to run. If not provided, an implementation of ChildLauncher will be used. Default is empty optional.
      Returns:
      optional command if not default child
    • javaOptions

      default List<String> javaOptions()
      List of Java options to make available to the process. Default is empty list.
      Returns:
      list of Java options
    • arguments

      default List<String> arguments()
      Command line arguments to pass along to the executing process. Default is empty list.
      Returns:
      list of arguments