Uses of Class
org.jboss.remoting.InvokerLocator

Packages that use InvokerLocator
org.jboss.remoting   
org.jboss.remoting.detection   
org.jboss.remoting.loading   
org.jboss.remoting.network   
org.jboss.remoting.network.filter   
org.jboss.remoting.transport   
org.jboss.remoting.transport.async   
org.jboss.remoting.transport.async.bio   
org.jboss.remoting.transport.local   
org.jboss.remoting.transport.mock   
org.jboss.remoting.transport.rmi   
org.jboss.remoting.transport.soap.axis   
org.jboss.remoting.transport.socket   
org.jboss.remoting.transport.test   
 

Uses of InvokerLocator in org.jboss.remoting
 

Fields in org.jboss.remoting declared as InvokerLocator
protected  InvokerLocator ClientInvoker.localServerLocator
           
protected  InvokerLocator AbstractInvoker.locator
           
protected  InvokerLocator AbstractInvoker.localServerLocator
           
 

Methods in org.jboss.remoting that return InvokerLocator
 InvokerLocator SubsystemNotSupported.getLocator()
           
 InvokerLocator RemoteMethodInvocation.getLocator()
          return the locator (client) that invoked this method (on server)
static InvokerLocator[] InvokerRegistry.getRegisteredServerLocators()
          return an array of InvokerLocators that are local to this VM (server invokers)
static InvokerLocator InvokerRegistry.getSuitableServerLocatorForRemote(InvokerLocator remote)
          return a suitable local server invoker that can service the remote invoker locator based on a compatible transport
 InvokerLocator Invoker.getLocator()
          return the locator this Invoker represents
 InvokerLocator InvocationRequest.getLocator()
           
 InvokerLocator ClientInvoker.getClientLocator()
          Gets the client locator.
 InvokerLocator AbstractInvoker.getLocator()
          return the locator this Invoker represents
 InvokerLocator AbstractInvoker.getClientLocator()
          Gets the client locator.
 

Methods in org.jboss.remoting with parameters of type InvokerLocator
protected  void ServerInvoker.preProcess(String sessionId, ClassBytes arg, Map payload, InvokerLocator locator)
          called prior to an invocation
protected  void ServerInvoker.postProcess(String sessionId, Object param, Map payload, InvokerLocator locator)
          called after an invocation
static InvokerLocator InvokerRegistry.getSuitableServerLocatorForRemote(InvokerLocator remote)
          return a suitable local server invoker that can service the remote invoker locator based on a compatible transport
static void InvokerRegistry.unregisterLocator(InvokerLocator locator)
           
static boolean InvokerRegistry.isClientInvokerRegistered(InvokerLocator locator)
          returns true if the client invoker is registered in the local JVM for a given locator
static void InvokerRegistry.destroyClientInvoker(InvokerLocator locator)
          called to destroy any cached RemoteClientInvoker copies inside the registry.
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 boolean InvokerRegistry.isServerInvokerRegistered(InvokerLocator locator)
          returns true if the server invoker is registered in the local JVM for a given locator/handler pair
static ServerInvoker InvokerRegistry.createServerInvoker(InvokerLocator locator)
          create a ServerInvoker instance, using the specific Invoker locator data and an implementation of the ServerInvocationHandler interface
 void InvocationRequest.setLocator(InvokerLocator locator)
           
 void ClientInvokerAdapter.addListener(InvokerLocator locator, String subsystem, InvokerCallbackHandler callbackHandler)
          The addListener method
 void ClientInvokerAdapter.removeListener(InvokerLocator locator, String subsystem, InvokerCallbackHandler callbackHandler)
          The removeListener method
 List ClientInvokerAdapter.getCallbacks(InvokerLocator locator, String subsystem)
          The getCallbacks method
 void ClientInvokerAdapter.connect(InvokerLocator locator)
          The connect method
 boolean ClientInvokerAdapter.isConnected(InvokerLocator locator)
          The isConnected method
 void ClientInvokerAdapter.disconnect(InvokerLocator locator)
          The disconnect method
protected  ClientInvoker ClientInvokerAdapter.getClientInvoker(InvokerLocator locator)
           
 void ClientInvoker.setClientLocator(InvokerLocator locator)
          This should be set when want to override the default behavior of automatically getting s suitable locator.
 boolean ClientInterceptor.isConnected(InvokerLocator locator)
           
 void ClientInterceptor.connect(InvokerLocator locator)
           
 void ClientInterceptor.disconnect(InvokerLocator locator)
           
 void ClientInterceptor.addListener(InvokerLocator locator, String sessionId, InvokerCallbackHandler callbackHandler)
          If the client invoker has a client locator, call it to add the client's callback handler.
 void ClientInterceptor.removeListener(InvokerLocator locator, String sessionId, 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).
 List ClientInterceptor.getCallbacks(InvokerLocator locator, String sessionId)
           
 void Client.addListener(InvokerCallbackHandler callbackHandler, InvokerLocator clientLocator)
          Adds the specified handler as a callback listener for push (async) callbacks.
 void AbstractInvoker.setClientLocator(InvokerLocator locator)
          This should be set when want to override the default behavior of automatically getting s suitable locator.
 

Constructors in org.jboss.remoting with parameters of type InvokerLocator
SubsystemNotSupported(String subsystem, InvokerLocator locator)
           
ServerInvoker(InvokerLocator locator)
           
RemoteMethodInvocation(String sessionId, String subsystem, Object arg, Map payload, InvokerLocator locator)
           
RemoteClientInvoker(InvokerLocator locator)
           
InvocationRequest(String sessionId, String subsystem, Object arg, Map requestPayload, Map returnPayload, InvokerLocator locator)
           
ClientInvoker(ClassLoader cl, InvokerLocator locator)
           
Client(InvokerLocator locator, String subsystem)
           
Client(ClassLoader cl, InvokerLocator locator, String subsystem)
           
AbstractInvoker(InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.detection
 

Methods in org.jboss.remoting.detection that return InvokerLocator
 InvokerLocator[] Detection.getLocators()
          return the locators for the server
 

Constructors in org.jboss.remoting.detection with parameters of type InvokerLocator
Detection(Identity identity, InvokerLocator[] locators)
           
 

Uses of InvokerLocator in org.jboss.remoting.loading
 

Constructors in org.jboss.remoting.loading with parameters of type InvokerLocator
ClassRequiredMethodInvocation(String sessionId, String className, InvokerLocator l)
           
 

Uses of InvokerLocator in org.jboss.remoting.network
 

Methods in org.jboss.remoting.network that return InvokerLocator
 InvokerLocator[] NetworkNotification.getLocator()
          return the locators affected by the notification
 InvokerLocator[] NetworkInstance.getLocators()
           
 

Methods in org.jboss.remoting.network with parameters of type InvokerLocator
 void NetworkRegistryMBean.addServer(Identity identity, InvokerLocator[] invokers)
          add a server for a given identity that is available on the network
 void NetworkRegistryMBean.updateServer(Identity identity, InvokerLocator[] invokers)
          update the invokers for a given server
 void NetworkRegistry.addServer(Identity identity, InvokerLocator[] invokers)
          add a server for a given identity that is available on the network
 void NetworkRegistry.updateServer(Identity identity, InvokerLocator[] invokers)
          update the invokers for a given server
 boolean NetworkFilter.filter(Identity identity, InvokerLocator[] locators)
          called to apply a filter when selecting 0..* servers on the network
 

Constructors in org.jboss.remoting.network with parameters of type InvokerLocator
NetworkNotification(javax.management.ObjectName source, String type, Identity identity, InvokerLocator[] invokers)
           
NetworkInstance(Identity identity, InvokerLocator[] locators)
           
 

Uses of InvokerLocator in org.jboss.remoting.network.filter
 

Methods in org.jboss.remoting.network.filter with parameters of type InvokerLocator
 boolean InvokerProtocolFilter.filter(Identity identity, InvokerLocator[] locators)
          called to apply a filter when selecting 0..* servers on the network
 boolean IdentityFilter.filter(Identity identity, InvokerLocator[] locators)
          called to apply a filter when selecting 0..* servers on the network
 

Uses of InvokerLocator in org.jboss.remoting.transport
 

Methods in org.jboss.remoting.transport that return InvokerLocator
 InvokerLocator ConnectorMBean.getLocator()
          Returns the locator to the connector.
 InvokerLocator Connector.getLocator()
          Returns the locator to the connector.
 InvokerLocator ClientInvoker.getClientLocator()
          Gets the client locator.
 

Methods in org.jboss.remoting.transport with parameters of type InvokerLocator
 void ClientInvoker.setClientLocator(InvokerLocator locator)
          This should be set when want to override the default behavior of automatically getting s suitable locator.
 

Uses of InvokerLocator in org.jboss.remoting.transport.async
 

Methods in org.jboss.remoting.transport.async that return InvokerLocator
 InvokerLocator ChannelServer.getLocalURI()
          The URI that the server is bound to.
 

Methods in org.jboss.remoting.transport.async with parameters of type InvokerLocator
static ChannelPool Registry.getChannelPool(InvokerLocator uri)
          Keeps a map of uri->ChannelPool objects.
 void ChannelServer.bind(InvokerLocator bindURI)
          Binds the server to network resource.
 void Channel.open(InvokerLocator uri, ChannelListner listner)
          opens a connection to another server.
 

Constructors in org.jboss.remoting.transport.async with parameters of type InvokerLocator
ChannelPool(InvokerLocator uri)
           
AsyncServerInvoker(InvokerLocator locator)
           
AsyncClientInvoker(InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.async.bio
 

Methods in org.jboss.remoting.transport.async.bio that return InvokerLocator
 InvokerLocator BlockingServer.getLocalURI()
           
 InvokerLocator BlockingChannel.getRemoteURI()
           
 

Methods in org.jboss.remoting.transport.async.bio with parameters of type InvokerLocator
 void BlockingServer.bind(InvokerLocator localURI)
           
 void BlockingChannel.open(InvokerLocator remoteURI, ChannelListner listner)
           
 void BlockingChannel.init(InvokerLocator localURI, Socket socket)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.local
 

Constructors in org.jboss.remoting.transport.local with parameters of type InvokerLocator
LocalClientInvoker(InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.mock
 

Constructors in org.jboss.remoting.transport.mock with parameters of type InvokerLocator
MockServerInvoker(InvokerLocator locator)
           
MockClientInvoker(InvokerLocator locator, MockServerInvoker server)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.rmi
 

Constructors in org.jboss.remoting.transport.rmi with parameters of type InvokerLocator
RMIServerInvoker(InvokerLocator locator)
           
RMIClientInvoker(InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.soap.axis
 

Constructors in org.jboss.remoting.transport.soap.axis with parameters of type InvokerLocator
SOAPServerInvoker(InvokerLocator locator)
           
SOAPClientInvoker(InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.socket
 

Constructors in org.jboss.remoting.transport.socket with parameters of type InvokerLocator
SocketServerInvoker(InvokerLocator locator)
           
SocketClientInvoker(InvokerLocator locator)
           
 

Uses of InvokerLocator in org.jboss.remoting.transport.test
 

Constructors in org.jboss.remoting.transport.test with parameters of type InvokerLocator
TransportTest(javax.management.MBeanServer server, InvokerLocator locator)
           
 



Copyright © 2002 JBoss Group, LLC. All Rights Reserved.