| Package | Description | 
|---|---|
| net.jini.jeri.connection | 
 Provides interfaces and classes for implementing connection-based
Jini extensible remote invocation (Jini ERI) transport layer
providers. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Connection | 
ConnectionEndpoint.connect(OutboundRequestHandle handle)
Returns a new connection that can be used to send a request for
 the specified handle. 
 | 
Connection | 
ConnectionEndpoint.connect(OutboundRequestHandle handle,
       Collection active,
       Collection idle)
Returns an existing or new connection that can be used to send
 a request for the specified handle, or  
null if a
 new connection needs to be created in a way that requires
 synchronous I/O. | 
InvocationConstraints | 
Connection.getUnfulfilledConstraints(OutboundRequestHandle handle)
Implements  
OutboundRequest.getUnfulfilledConstraints for a request with
 the specified handle. | 
OutboundRequestIterator | 
ConnectionManager.newRequest(OutboundRequestHandle handle)
Returns an  
OutboundRequestIterator to use to send a new
 request for the specified handle to this connection manager's
 ConnectionEndpoint. | 
void | 
Connection.populateContext(OutboundRequestHandle handle,
               Collection context)
Populates the supplied collection with context information
 representing a request with the specified handle. 
 | 
IOException | 
Connection.readResponseData(OutboundRequestHandle handle,
                InputStream stream)
Reads from the specified stream any per-response data required
 by this connection for a request with the specified handle. 
 | 
void | 
Connection.writeRequestData(OutboundRequestHandle handle,
                OutputStream stream)
Writes to the specified stream any per-request data required by
 this connection for a request with the specified handle. 
 |