|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ClientInvoker in org.jboss.remoting |
---|
Classes in org.jboss.remoting that implement ClientInvoker | |
---|---|
class |
MicroRemoteClientInvoker
MicroRemoteClientInvoker is an abstract client part handler that implements the bulk of the heavy lifting to process a remote method and dispatch it to a remote ServerInvoker and handle the result. |
class |
RemoteClientInvoker
This class extends the MicroRemoteClientInvoker and adds extra functionality that can not be included in a J2ME envrionment, such as setting socket factories. |
Methods in org.jboss.remoting that return ClientInvoker | |
---|---|
static ClientInvoker |
InvokerRegistry.createClientInvoker(InvokerLocator locator)
create a ClientInvoker instance, using the specific InvokerLocator, which is just a client-side invoker to a remote server. |
static ClientInvoker |
InvokerRegistry.createClientInvoker(InvokerLocator locator,
java.util.Map configuration)
create a ClientInvoker instance, using the specific InvokerLocator, which is just a client-side invoker to a remote server |
static ClientInvoker[] |
InvokerRegistry.getClientInvokers()
return an array of ClientInvokers that are connected |
ClientInvoker |
Client.getInvoker()
Get the client invoker (transport implementation). |
ClientInvoker |
InvokerLocator.narrow()
narrow this invoker to a specific RemoteClientInvoker instance |
Methods in org.jboss.remoting with parameters of type ClientInvoker | |
---|---|
void |
Client.setInvoker(ClientInvoker invoker)
Set the client invoker (transport implementation). |
Constructors in org.jboss.remoting with parameters of type ClientInvoker | |
---|---|
Client(java.lang.ClassLoader cl,
ClientInvoker invoker,
java.lang.String subsystem)
Deprecated. This constructor should not be used any more as will no longer take into account the classloader specified as a parameter. |
|
LeasePinger(ClientInvoker invoker,
java.lang.String invokerSessionID,
long defaultLeasePeriod)
|
Uses of ClientInvoker in org.jboss.remoting.transport |
---|
Subinterfaces of ClientInvoker in org.jboss.remoting.transport | |
---|---|
interface |
BidirectionalClientInvoker
This interface is used to indicate that a client invoker represents as transport that is bidirectional, which means that calls from the server to the client can be made without having to open a new physical connection from the server back to the client/ |
Methods in org.jboss.remoting.transport that return ClientInvoker | |
---|---|
ClientInvoker |
ClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.bisocket |
---|
Classes in org.jboss.remoting.transport.bisocket that implement ClientInvoker | |
---|---|
class |
BisocketClientInvoker
The bisocket transport, an extension of the socket transport, is designed to allow a callback server to function behind a firewall. |
Methods in org.jboss.remoting.transport.bisocket that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.http |
---|
Classes in org.jboss.remoting.transport.http that implement ClientInvoker | |
---|---|
class |
HTTPClientInvoker
HTTP client invoker. |
Methods in org.jboss.remoting.transport.http that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.http.ssl |
---|
Classes in org.jboss.remoting.transport.http.ssl that implement ClientInvoker | |
---|---|
class |
HTTPSClientInvoker
|
Uses of ClientInvoker in org.jboss.remoting.transport.https |
---|
Methods in org.jboss.remoting.transport.https that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.local |
---|
Classes in org.jboss.remoting.transport.local that implement ClientInvoker | |
---|---|
class |
LocalClientInvoker
LocalClientInvoker does not use any transport protocol for invoking the ServerInvoker, instead will make call directly on it locally. |
Methods in org.jboss.remoting.transport.local that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.multiplex |
---|
Classes in org.jboss.remoting.transport.multiplex that implement ClientInvoker | |
---|---|
class |
MultiplexClientInvoker
MultiplexClientInvoker is the client side of the Multiplex transport. |
Methods in org.jboss.remoting.transport.multiplex that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.rmi |
---|
Classes in org.jboss.remoting.transport.rmi that implement ClientInvoker | |
---|---|
class |
RMIClientInvoker
RMIClientInvoker |
Methods in org.jboss.remoting.transport.rmi that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.servlet |
---|
Methods in org.jboss.remoting.transport.servlet that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.socket |
---|
Classes in org.jboss.remoting.transport.socket that implement ClientInvoker | |
---|---|
class |
MicroSocketClientInvoker
SocketClientInvoker uses Sockets to remotely connect to the a remote ServerInvoker, which must be a SocketServerInvoker. |
class |
SocketClientInvoker
SocketClientInvoker uses Sockets to remotely connect to the a remote ServerInvoker, which must be a SocketServerInvoker. |
Methods in org.jboss.remoting.transport.socket that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.sslbisocket |
---|
Classes in org.jboss.remoting.transport.sslbisocket that implement ClientInvoker | |
---|---|
class |
SSLBisocketClientInvoker
|
Methods in org.jboss.remoting.transport.sslbisocket that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.sslmultiplex |
---|
Classes in org.jboss.remoting.transport.sslmultiplex that implement ClientInvoker | |
---|---|
class |
SSLMultiplexClientInvoker
SSLMultiplexClientInvoker is the client side of the sslmultiplex transport. |
Methods in org.jboss.remoting.transport.sslmultiplex that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.sslrmi |
---|
Classes in org.jboss.remoting.transport.sslrmi that implement ClientInvoker | |
---|---|
class |
SSLRMIClientInvoker
|
Methods in org.jboss.remoting.transport.sslrmi that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.sslservlet |
---|
Methods in org.jboss.remoting.transport.sslservlet that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
Uses of ClientInvoker in org.jboss.remoting.transport.sslsocket |
---|
Classes in org.jboss.remoting.transport.sslsocket that implement ClientInvoker | |
---|---|
class |
SSLSocketClientInvoker
|
Methods in org.jboss.remoting.transport.sslsocket that return ClientInvoker | |
---|---|
ClientInvoker |
TransportClientFactory.createClientInvoker(InvokerLocator locator,
java.util.Map config)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |