|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of InvokerLocator in org.jboss.remoting |
Fields in org.jboss.remoting declared as InvokerLocator | |
protected InvokerLocator |
AbstractInvoker.locator
|
protected InvokerLocator |
AbstractInvoker.localServerLocator
|
Methods in org.jboss.remoting that return InvokerLocator | |
InvokerLocator |
SubsystemNotSupported.getLocator()
|
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 |
Callback.getServerLocator()
|
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. |
static ServerInvoker |
InvokerRegistry.createServerInvoker(InvokerLocator locator,
Map configuration)
create a ServerInvoker instance, using the specific Invoker locator data and an implementation of the ServerInvocationHandler interface along with |
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)
|
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 |
Client.addListener(InvokerCallbackHandler callbackHandler,
InvokerLocator clientLocator,
Object callbackHandlerObject)
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)
|
|
ServerInvokerCallbackHandler(InvocationRequest invocation,
InvokerLocator serverLocator,
ServerInvoker owner)
|
|
ServerInvoker(InvokerLocator locator)
|
|
ServerInvoker(InvokerLocator locator,
Map configuration)
|
|
RemoteClientInvoker(InvokerLocator locator)
|
|
InvocationRequest(String sessionId,
String subsystem,
Object arg,
Map requestPayload,
Map returnPayload,
InvokerLocator locator)
|
|
Client(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.marshal |
Methods in org.jboss.remoting.marshal that return InvokerLocator | |
static InvokerLocator |
MarshallLoaderFactory.convertLocator(InvokerLocator locator)
Will take regular invoker locator with extra parameters indicating marshall loader configuration (such as port) and converts to the marshall loader locator. |
Methods in org.jboss.remoting.marshal with parameters of type InvokerLocator | |
static Connector |
MarshallLoaderFactory.createMarshallLoader(InvokerLocator locator)
Create a remoting server connector for a marshaller loader based on the specified locator. |
static InvokerLocator |
MarshallLoaderFactory.convertLocator(InvokerLocator locator)
Will take regular invoker locator with extra parameters indicating marshall loader configuration (such as port) and converts to the marshall loader locator. |
static Marshaller |
MarshallerLoaderClient.getMarshaller(InvokerLocator loaderLocator,
String dataType,
ClassLoader classByteLoader)
Will call on marshall loader server to load marshaller for given data type. |
static UnMarshaller |
MarshallerLoaderClient.getUnMarshaller(InvokerLocator loaderLocator,
String dataType,
ClassLoader classByteLoader)
Will call on marshall loader server to load unmarshaller for given data type. |
static Marshaller |
MarshalFactory.getMarshaller(InvokerLocator locator,
ClassLoader classLoader)
Will try to look up marshaller by first looking for data type parameter within locator and then using that to look up marhsaller locally. |
static UnMarshaller |
MarshalFactory.getUnMarshaller(InvokerLocator locator,
ClassLoader classLoader)
Will try to look up unmarshaller by first looking for data type parameter within locator and then using that to look up unmarshaller locally. |
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.http |
Constructors in org.jboss.remoting.transport.http with parameters of type InvokerLocator | |
HTTPServerInvoker(InvokerLocator locator)
|
|
HTTPServerInvoker(InvokerLocator locator,
Map configuration)
|
|
HTTPClientInvoker(InvokerLocator locator)
|
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.rmi |
Constructors in org.jboss.remoting.transport.rmi with parameters of type InvokerLocator | |
RMIServerInvoker(InvokerLocator locator)
|
|
RMIServerInvoker(InvokerLocator locator,
Map configuration)
|
|
RMIClientInvoker(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)
|
|
SocketServerInvoker(InvokerLocator locator,
Map configuration)
|
|
SocketClientInvoker(InvokerLocator locator)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |