public interface JvmDebugOptions
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Provider<Boolean> |
getEnabled()Whether to attach a debug agent to the forked process. |
|
public Provider<Integer> |
getPort()The debug port. |
|
public Provider<Boolean> |
getServer()Whether a socket-attach or a socket-listen type of debugger is expected. |
|
public Provider<Boolean> |
getSuspend()Whether the forked process should be suspended until the connection to the debugger is established. |
|
public void |
setEnabled(Object flag)Whether to attach a debug agent to the forked process. |
|
public void |
setPort(Object port)THe debug port. |
|
public void |
setServer(Object flag)Whether a socket-attach or a socket-listen type of debugger is expected. |
|
public void |
setSuspend(Object flag)Whether the forked process should be suspended until the connection to the debugger is established. |
Whether to attach a debug agent to the forked process.
Whether a socket-attach or a socket-listen type of debugger is expected.
Whether the forked process should be suspended until the connection to the debugger is established.
Whether to attach a debug agent to the forked process.
flag - Value convertible to boolean.THe debug port.
port - Value convertible to integer.Whether a socket-attach or a socket-listen type of debugger is expected.
flag - Value convertible to boolean.Whether the forked process should be suspended until the connection to the debugger is established.
flag - Value convertible to boolean.