com.sun.jdi.connect.spi |
com.sun.jdi.connect.spi description
This package comprises the interfaces and classes used to
develop new {@link com.sun.jdi.connect.spi.TransportService}
implementations.
|
Java Source File Name | Type | Comment |
ClosedConnectionException.java | Class | This exception may be thrown as a result of an asynchronous
close of a
Connection while an I/O operation is
in progress.
When a thread is blocked in
Connection.readPacketreadPacket waiting for packet from a target VM the
Connection may be closed asynchronous by another
thread invokving the
Connection.close close method.
When this arises the thread in readPacket will throw this
exception. |
Connection.java | Class | A connection between a debugger and a target VM which it debugs.
A Connection represents a bi-directional communication channel
between a debugger and a target VM. |
TransportService.java | Class | A transport service for connections between a debugger and
a target VM.
A transport service is a concrete subclass of this class
that has a zero-argument constructor and implements the abstract
methods specified below. |