Uses of Interface
net.jini.jeri.OutboundRequestIterator

Packages that use OutboundRequestIterator
net.jini.jeri Provides the fundamental abstractions and standard implementation classes for Jini extensible remote invocation (Jini ERI).  
net.jini.jeri.connection Provides interfaces and classes for implementing connection-based Jini extensible remote invocation (Jini ERI) transport layer providers.  
net.jini.jeri.http Provides implementations of the Endpoint and ServerEndpoint abstractions that use HTTP messages sent over TCP sockets as the underlying communication mechanism.  
net.jini.jeri.kerberos Provides implementations of Endpoint and ServerEndpoint that use Kerberos as the underlying network security protocol to support security related invocation constraints for remote requests.  
net.jini.jeri.ssl Provides implementations of Endpoint and ServerEndpoint that use TLS/SSL and HTTPS (HTTP over TLS/SSL) to support invocation constraints.  
net.jini.jeri.tcp Provides implementations of the Endpoint and ServerEndpoint abstractions that use TCP sockets as the underlying communication mechanism.  
 

Uses of OutboundRequestIterator in net.jini.jeri
 

Methods in net.jini.jeri that return OutboundRequestIterator
 OutboundRequestIterator BasicObjectEndpoint.newCall(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new remote call to the referenced remote object using the specified constraints.

The constraints must be the complete, absolute constraints for the remote call, combining any client and server constraints for the remote method being invoked, with no relative time constraints.

For each OutboundRequest produced by the returned OutboundRequestIterator, after writing the request data and before reading any response data, executeCall must be invoked to execute the call. This method first invokes newRequest on this BasicObjectEndpoint's contained Endpoint with the specified constraints to obtain an OutboundRequestIterator.

 OutboundRequestIterator ObjectEndpoint.newCall(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new remote call to the referenced remote object using the specified constraints.
 OutboundRequestIterator Endpoint.newRequest(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new request to this remote endpoint using the specified constraints.
 

Uses of OutboundRequestIterator in net.jini.jeri.connection
 

Methods in net.jini.jeri.connection that return OutboundRequestIterator
 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.
 

Uses of OutboundRequestIterator in net.jini.jeri.http
 

Methods in net.jini.jeri.http that return OutboundRequestIterator
 OutboundRequestIterator HttpEndpoint.newRequest(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new request to this remote endpoint using the specified constraints.

The constraints must be the complete, absolute constraints for the request. The returned OutboundRequestIterator's next method behaves as follows: Initiates an attempt to communicate the request to this remote endpoint.

 

Uses of OutboundRequestIterator in net.jini.jeri.kerberos
 

Methods in net.jini.jeri.kerberos that return OutboundRequestIterator
 OutboundRequestIterator KerberosEndpoint.newRequest(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new request to this remote endpoint using the specified constraints.

The constraints must be the complete, absolute constraints for the request. The returned OutboundRequestIterator's next method behaves as follows: Initiates an attempt to communicate the request to this remote endpoint.

 

Uses of OutboundRequestIterator in net.jini.jeri.ssl
 

Methods in net.jini.jeri.ssl that return OutboundRequestIterator
 OutboundRequestIterator SslEndpoint.newRequest(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new request to this remote endpoint using the specified constraints.

The constraints must be the complete, absolute constraints for the request. The returned OutboundRequestIterator's next method behaves as follows: Initiates an attempt to communicate the request to this remote endpoint.

 OutboundRequestIterator HttpsEndpoint.newRequest(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new request to this remote endpoint using the specified constraints.

The constraints must be the complete, absolute constraints for the request. The returned OutboundRequestIterator's next method behaves as follows: Initiates an attempt to communicate the request to this remote endpoint.

 

Uses of OutboundRequestIterator in net.jini.jeri.tcp
 

Methods in net.jini.jeri.tcp that return OutboundRequestIterator
 OutboundRequestIterator TcpEndpoint.newRequest(InvocationConstraints constraints)
          Returns an OutboundRequestIterator to use to send a new request to this remote endpoint using the specified constraints.

The constraints must be the complete, absolute constraints for the request. The returned OutboundRequestIterator's next method behaves as follows: Initiates an attempt to communicate the request to this remote endpoint.

 



Copyright 2007, multiple authors.
Licensed under the Apache License, Version 2.0, see the NOTICE file for attributions.