Uses of Interface
org.jboss.remoting.callback.InvokerCallbackHandler

Packages that use InvokerCallbackHandler
org.jboss.remoting   
org.jboss.remoting.callback   
org.jboss.remoting.marshal   
org.jboss.remoting.samples.callback   
org.jboss.remoting.samples.chat.client   
org.jboss.remoting.samples.chat.server   
org.jboss.remoting.samples.detection   
org.jboss.remoting.samples.http   
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.stream   
org.jboss.remoting.transporter   
 

Uses of InvokerCallbackHandler in org.jboss.remoting
 

Methods in org.jboss.remoting with parameters of type InvokerCallbackHandler
 void Client.addListener(InvokerCallbackHandler callbackHandler)
          Adds the specified handler as a callback listener for pull (sync) callbacks.
 void Client.addListener(InvokerCallbackHandler callbackHandler, InvokerLocator clientLocator)
          Adds the specified handler as a callback listener for push (async) callbacks.
 void Client.addListener(InvokerCallbackHandler callbackHandler, InvokerLocator clientLocator, java.lang.Object callbackHandlerObject)
          Adds the specified handler as a callback listener for push (async) callbacks.
 void Client.removeListener(InvokerCallbackHandler callbackHandler)
          Removes callback handler as a callback listener from the server (and client in the case that it was setup to receive async callbacks).
 java.util.List Client.getCallbacks(InvokerCallbackHandler callbackHandler)
          Gets the callbacks for specified callback handler.
 void ServerInvoker.removeCallbackListener(java.lang.String subsystem, InvokerCallbackHandler callbackHandler)
           
 void ServerInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void ServerInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.callback
 

Classes in org.jboss.remoting.callback that implement InvokerCallbackHandler
 class ServerInvokerCallbackHandler
          Responsible for all callbacks in remoting at invoker level (on the server side).
 

Uses of InvokerCallbackHandler in org.jboss.remoting.marshal
 

Methods in org.jboss.remoting.marshal with parameters of type InvokerCallbackHandler
 void MarshallerLoaderHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void MarshallerLoaderHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.callback
 

Classes in org.jboss.remoting.samples.callback that implement InvokerCallbackHandler
 class CallbackClient.CallbackHandler
          Our implementation of the InvokerCallbackHandler.
 

Methods in org.jboss.remoting.samples.callback with parameters of type InvokerCallbackHandler
 void CallbackServer.SampleInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void CallbackServer.SampleInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.chat.client
 

Classes in org.jboss.remoting.samples.chat.client that implement InvokerCallbackHandler
 class ChatReceiverHandler
           
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.chat.server
 

Methods in org.jboss.remoting.samples.chat.server with parameters of type InvokerCallbackHandler
 void ChatManager.addListener(InvokerCallbackHandler callbackHandler)
           
 void ChatManager.removeListener(InvokerCallbackHandler callbackHandler)
           
 void ChatServer_Impl.addListener(InvokerCallbackHandler callbackHandler)
           
 void ChatServer_Impl.removeListener(InvokerCallbackHandler callbackHandler)
           
 

Constructors in org.jboss.remoting.samples.chat.server with parameters of type InvokerCallbackHandler
CallbackThread(InvokerCallbackHandler callbackHandler, ShutDownGate shutDownGate, ReadWriteArrayList messages)
           
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.detection
 

Methods in org.jboss.remoting.samples.detection with parameters of type InvokerCallbackHandler
 void SimpleDetectorServer.SampleInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void SimpleDetectorServer.SampleInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.http
 

Methods in org.jboss.remoting.samples.http with parameters of type InvokerCallbackHandler
 void WebInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void WebInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.multiplex.invoker
 

Classes in org.jboss.remoting.samples.multiplex.invoker that implement InvokerCallbackHandler
static class Client2Server1.SampleCallbackHandler
           
static class Client2Server2.SampleCallbackHandler
           
static class Client3Server1.SampleCallbackHandler
           
static class Server2Client1.SampleCallbackHandler
           
static class Server2Client2.SampleCallbackHandler
           
static class Server3Client1.SampleCallbackHandler
           
 

Methods in org.jboss.remoting.samples.multiplex.invoker with parameters of type InvokerCallbackHandler
 void MultiplexInvokerServer.SampleInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void MultiplexInvokerServer.SampleInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.oneway
 

Methods in org.jboss.remoting.samples.oneway with parameters of type InvokerCallbackHandler
 void OnewayServer.SampleInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void OnewayServer.SampleInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.serialization
 

Methods in org.jboss.remoting.samples.serialization with parameters of type InvokerCallbackHandler
 void SerializationServer.SampleInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void SerializationServer.SampleInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.simple
 

Methods in org.jboss.remoting.samples.simple with parameters of type InvokerCallbackHandler
 void SimpleServer.SampleInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void SimpleServer.SampleInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.samples.stream
 

Methods in org.jboss.remoting.samples.stream with parameters of type InvokerCallbackHandler
 void StreamingServer.TestStreamInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void StreamingServer.TestStreamInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.stream
 

Methods in org.jboss.remoting.stream with parameters of type InvokerCallbackHandler
 void StreamServer.Handler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void StreamServer.Handler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 

Uses of InvokerCallbackHandler in org.jboss.remoting.transporter
 

Methods in org.jboss.remoting.transporter with parameters of type InvokerCallbackHandler
 void TransporterHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 void TransporterHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 



Copyright ? 1998-2005 JBoss Inc . All Rights Reserved.