Home » JBoss-5.1.0 » org » jboss » remoting »

org.jboss.remoting

Sub Packages:

org.jboss.remoting.callback    
org.jboss.remoting.detection    
org.jboss.remoting.detection.jndi    
org.jboss.remoting.detection.multicast    
org.jboss.remoting.detection.util    
org.jboss.remoting.ident    
org.jboss.remoting.invocation    
org.jboss.remoting.loading    
org.jboss.remoting.marshal    
org.jboss.remoting.marshal.compress    
org.jboss.remoting.marshal.encryption    
org.jboss.remoting.marshal.http    
org.jboss.remoting.marshal.rmi    
org.jboss.remoting.marshal.serializable    
org.jboss.remoting.network    
org.jboss.remoting.network.filter    
org.jboss.remoting.samples.bisocket    
org.jboss.remoting.samples.callback    
org.jboss.remoting.samples.callback.acknowledgement    
org.jboss.remoting.samples.callback.statistics    
org.jboss.remoting.samples.chat.client    
org.jboss.remoting.samples.chat.exceptions    
org.jboss.remoting.samples.chat.server    
org.jboss.remoting.samples.chat.utility    
org.jboss.remoting.samples.config.factories    
org.jboss.remoting.samples.detection.jndi    
org.jboss.remoting.samples.detection.jndi.ssl    
org.jboss.remoting.samples.detection.multicast    
org.jboss.remoting.samples.http    
org.jboss.remoting.samples.multiplex    
org.jboss.remoting.samples.multiplex.invoker    
org.jboss.remoting.samples.oneway    
org.jboss.remoting.samples.serialization    
org.jboss.remoting.samples.simple    
org.jboss.remoting.samples.stream    
org.jboss.remoting.samples.transporter.basic    
org.jboss.remoting.samples.transporter.basic.client    
org.jboss.remoting.samples.transporter.basic.server    
org.jboss.remoting.samples.transporter.clustered.client    
org.jboss.remoting.samples.transporter.clustered.server    
org.jboss.remoting.samples.transporter.complex    
org.jboss.remoting.samples.transporter.complex.client    
org.jboss.remoting.samples.transporter.complex.server    
org.jboss.remoting.samples.transporter.custom.client    
org.jboss.remoting.samples.transporter.custom.server    
org.jboss.remoting.samples.transporter.multiple    
org.jboss.remoting.samples.transporter.multiple.client    
org.jboss.remoting.samples.transporter.multiple.server    
org.jboss.remoting.samples.transporter.proxy    
org.jboss.remoting.samples.transporter.proxy.client    
org.jboss.remoting.samples.transporter.proxy.server    
org.jboss.remoting.samples.transporter.serialization    
org.jboss.remoting.samples.transporter.serialization.client    
org.jboss.remoting.samples.transporter.serialization.server    
org.jboss.remoting.samples.transporter.simple    
org.jboss.remoting.security    
org.jboss.remoting.security.domain    
org.jboss.remoting.serialization    
org.jboss.remoting.serialization.impl.java    
org.jboss.remoting.serialization.impl.jboss    
org.jboss.remoting.socketfactory    
org.jboss.remoting.stream    
org.jboss.remoting.transport    
org.jboss.remoting.transport.bisocket    
org.jboss.remoting.transport.coyote    
org.jboss.remoting.transport.coyote.ssl    
org.jboss.remoting.transport.http    
org.jboss.remoting.transport.http.ssl    
org.jboss.remoting.transport.https    
org.jboss.remoting.transport.local    
org.jboss.remoting.transport.multiplex    
org.jboss.remoting.transport.multiplex.utility    
org.jboss.remoting.transport.rmi    
org.jboss.remoting.transport.servlet    
org.jboss.remoting.transport.servlet.web    
org.jboss.remoting.transport.socket    
org.jboss.remoting.transport.sslbisocket    
org.jboss.remoting.transport.sslmultiplex    
org.jboss.remoting.transport.sslrmi    
org.jboss.remoting.transport.sslservlet    
org.jboss.remoting.transport.sslsocket    
org.jboss.remoting.transport.web    
org.jboss.remoting.transporter    
org.jboss.remoting.util    
org.jboss.remoting.util.socket    

Interfaces:

ConnectionListener   Listener that can be registered with the Client to receive a callback if the target server for said Client is determined to be unreachable at any point.  code | html
Invoker     code | html
SerializableStore     code | html
ServerInvocationHandler   ServerInvocationHandler is the server side (remote) end handler which is registered for a given ServerInvoker implementation.  code | html
ServerInvokerMBean     code | html
Subsystem   Predefined subsystem types.  code | html

Abstract Classes:

AbstractInvoker   AbstractInvoker is an abstract handler part that contains common methods between both client and server.  code | html
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.  code | html
RemoteClientInvoker   This class extends the MicroRemoteClientInvoker and adds extra functionality that can not be included in a J2ME envrionment, such as setting socket factories.  code | html
ServerInvoker   ServerInvoker is the server-side part of a remote Invoker.  code | html

Classes:

AbstractInvoker.CallbackHandlerHolder     code | html
AbstractInvoker.CallbackLocatorHolder     code | html
CannotConnectException   This exception is generated when the remoting layer cannot connect to the remote server It means that the client cannot send the request to the server.  code | html
Client   Client is a convience class for invoking remote methods for a given subsystem.  code | html
Client.InvokerDestructionTimerTask     code | html
ClientDisconnectedException   Can expect this exception to be included as parameter to handleConnectionException() method of org.jboss.remoting.ConnectionListener when client disconnects from the server.  code | html
ClientHolder     code | html
ConnectionFailedException   ConnectionFailedException is a RuntimeException that is raised when a remote connection fails.  code | html
ConnectionNotifier   This class is used on the server side to notify any connection listeners when a client connection has been terminated (either by loss of lease or by normal disconnect).  code | html
ConnectionValidator     code | html
ConnectionValidator.ConnectionCheckThread     code | html
ConnectionValidator.WaitOnConnectionCheckTimerTask     code | html
Home     code | html
InvalidConfigurationException     code | html
InvocationFailureException   Indicates a client invoker was unable to perform an invocation.  code | html
InvocationRequest   InvocationRequest is passed to ServerInvocationHandler which encapsulates the unmarshalled method invocation parameters from the ServerInvoker.  code | html
InvocationResponse   InvocationResponse is a return object from a call to a remote Server Invoker.  code | html
InvokerLocator   InvokerLocator is an object that indentifies a specific Invoker on the network, via a unique locator URI.  code | html
InvokerRegistry   InvokerRegistry is a simple registery for creating client and server side Invoker implementations, getting information about the invokers and register as a invoker creator for one or more specific transports.  code | html
InvokerRegistry.ClientInvokerHolder     code | html
Lease   This class is used on the remoting server to maintain lease information for remoting clients.  code | html
Lease.LeaseTimerTask     code | html
LeasePinger   Internal agent class to ping the remote server to keep lease alive.  code | html
LeasePinger.LeaseTimerTask     code | html
Remoting     code | html
ServerConfiguration   ServerConfiguration can hold all parameters used to configure an org.jboss.remoting.transport.Connector.  code | html
ServerInvocationHandlerWrapper   A ServerInvocationHandlerWrapper is used to wrap an MBean proxy that implements org.jboss.remoting.ServerInvocationHandler.  code | html
ServerInvoker.CallbackContainer     code | html
ServerInvoker.InvalidStateException     code | html
SubsystemNotSupported   SubsystemNotSupported is raised by a ServerInvoker when the target subsystem is not supported on the target VM.  code | html
Version     code | html