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.callback.statistics   
org.jboss.remoting.samples.chat.client   
org.jboss.remoting.samples.chat.server   
org.jboss.remoting.samples.config.factories   
org.jboss.remoting.samples.detection.jndi   
org.jboss.remoting.samples.detection.multicast   
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.transport   
org.jboss.remoting.transporter   
 

Uses of InvokerCallbackHandler in org.jboss.remoting
 

Methods in org.jboss.remoting with parameters of type InvokerCallbackHandler
 int Client.acknowledgeCallback(InvokerCallbackHandler callbackHandler, Callback callback)
           
 int Client.acknowledgeCallback(InvokerCallbackHandler callbackHandler, Callback callback, java.lang.Object response)
           
 int Client.acknowledgeCallbacks(InvokerCallbackHandler callbackHandler, java.util.List callbacks)
           
 int Client.acknowledgeCallbacks(InvokerCallbackHandler callbackHandler, java.util.List callbacks, java.util.List responses)
           
 java.lang.String AbstractInvoker.addClientLocator(java.lang.String sessionId, InvokerCallbackHandler callbackhandler, InvokerLocator locator)
          Generates a listener id for the callbackhandler and callback server locator combination
 void ServerInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
          Adds a callback handler that will listen for callbacks from the server invoker handler.
 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.addListener(InvokerCallbackHandler callbackhandler, java.util.Map metadata)
          Adds the specified handler as a callback listener for push (async) callbacks.
 void Client.addListener(InvokerCallbackHandler callbackhandler, java.util.Map metadata, java.lang.Object callbackHandlerObject)
          Adds the specified handler as a callback listener for push (async) callbacks.
 void Client.addListener(InvokerCallbackHandler callbackhandler, java.util.Map metadata, java.lang.Object callbackHandlerObject, boolean serverToClient)
          Adds the specific handler as a callback listener for async callbacks.
 java.util.Set Client.getCallbackConnectors(InvokerCallbackHandler callbackHandler)
          Returns the callback Connectors with which callbackHandler is registered.
 java.util.List Client.getCallbacks(InvokerCallbackHandler callbackHandler)
          Gets the callbacks for specified callback handler.
 java.util.List Client.getCallbacks(InvokerCallbackHandler callbackHandler, java.util.Map metadata)
          Gets the callbacks for specified callback handler.
 java.util.List AbstractInvoker.getClientLocators(java.lang.String sessionId, InvokerCallbackHandler handler)
           
 void ServerInvoker.removeCallbackListener(java.lang.String subsystem, InvokerCallbackHandler callbackHandler)
           
 void ServerInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
          Removes the callback handler that was listening for callbacks from the server invoker handler.
 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).
 

Uses of InvokerCallbackHandler in org.jboss.remoting.callback
 

Subinterfaces of InvokerCallbackHandler in org.jboss.remoting.callback
 interface AsynchInvokerCallbackHandler
          AsynchInvokerCallbackHandler extends InvokerCallbackHandler with asynchronous callback handling.
 

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

Methods in org.jboss.remoting.callback with parameters of type InvokerCallbackHandler
 void CallbackListener.acknowledgeCallback(InvokerCallbackHandler callbackHandler, java.lang.Object callbackId, java.lang.Object response)
           
 

Constructors in org.jboss.remoting.callback with parameters of type InvokerCallbackHandler
CallbackPoller(Client client, InvokerCallbackHandler callbackhandler, java.util.Map metadata, java.lang.Object callbackHandlerObject)
           
 

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.callback.statistics
 

Methods in org.jboss.remoting.samples.callback.statistics with parameters of type InvokerCallbackHandler
 void CallbackServer.SampleInvocationHandler.acknowledgeCallback(InvokerCallbackHandler callbackHandler, java.lang.Object callbackId, java.lang.Object response)
           
 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 ChatServer_Impl.addListener(InvokerCallbackHandler callbackHandler)
           
 void ChatManager.addListener(InvokerCallbackHandler callbackHandler)
           
 void ChatServer_Impl.removeListener(InvokerCallbackHandler callbackHandler)
           
 void ChatManager.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.config.factories
 

Classes in org.jboss.remoting.samples.config.factories that implement InvokerCallbackHandler
static class FactoryConfigSample.CallbackHandler
           
 

Methods in org.jboss.remoting.samples.config.factories that return InvokerCallbackHandler
 InvokerCallbackHandler FactoryConfigSample.SampleInvocationHandler.getCallbackHandler()
           
 

Methods in org.jboss.remoting.samples.config.factories with parameters of type InvokerCallbackHandler
 void FactoryConfigSample.SampleInvocationHandler.addListener(InvokerCallbackHandler callbackHandler)
           
 void FactoryConfigSample.SampleInvocationHandler.removeListener(InvokerCallbackHandler callbackHandler)
           
 

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

Methods in org.jboss.remoting.samples.detection.jndi 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.detection.multicast
 

Methods in org.jboss.remoting.samples.detection.multicast 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.transport
 

Methods in org.jboss.remoting.transport with parameters of type InvokerCallbackHandler
 java.lang.String ClientInvoker.addClientLocator(java.lang.String sessionId, InvokerCallbackHandler callbackhandler, InvokerLocator locator)
          This should be set when want to override the default behavior of automatically getting a suitable locator.
 java.util.List ClientInvoker.getClientLocators(java.lang.String sessionId, InvokerCallbackHandler handler)
          Gets list of AbstractInvoker.CallbackLocatorHolder containing listener id and locator
 

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.