com.sun.jdi.connect |
com.sun.jdi.connect description
This package defines
connections between the virtual machine
using the JDI and the target virtual machine.
In concert with {@link com.sun.jdi.VirtualMachineManager}
it is the mechanism for launching, attaching, etc to
target virtual machines.
Methods may be added to the interfaces in the JDI packages in future
releases. Existing packages may be renamed if the JDI becomes a standard
extension.
|
Java Source File Name | Type | Comment |
AttachingConnector.java | Interface | A connector which attaches to a previously running target VM. |
Connector.java | Interface | A method of connection between a debugger and a target VM.
A connector encapsulates exactly one
Transport . |
IllegalConnectorArgumentsException.java | Class | Thrown to indicate an invalid argument or
inconsistent passed to a
Connector . |
LaunchingConnector.java | Interface | A connector which can launch a target VM before connecting to it. |
ListeningConnector.java | Interface | A connector which listens for a connection initiated by a target VM. |
Transport.java | Interface | A method of communication between a debugger and a target VM.
A Transport represents the transport mechanism used by a
com.sun.jdi.connect.Connector Connector to establish a
connection with a target VM. |
TransportTimeoutException.java | Class | This exception may be thrown as a result of a timeout
when attaching to a target VM, or waiting to accept a
connection from a target VM.
When attaching to a target VM, using
AttachingConnector.attach attach this
exception may be thrown if the connector supports a timeout
Connector.Argument connector argument . |
VMStartException.java | Class | A target VM was successfully launched, but terminated with an
error before a connection could be established. |