|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of InvokerLocator in org.jboss.remoting |
Fields in org.jboss.remoting declared as InvokerLocator | |
protected InvokerLocator |
AbstractInvoker.locator
|
Methods in org.jboss.remoting that return InvokerLocator | |
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 |
SubsystemNotSupported.getLocator()
|
InvokerLocator |
InvocationRequest.getLocator()
|
InvokerLocator |
AbstractInvoker.getLocator()
return the locator this Invoker represents |
InvokerLocator |
AbstractInvoker.getClientLocator(java.lang.String listenerId)
Gets the client locator. |
InvokerLocator |
Invoker.getLocator()
return the locator this Invoker represents |
Methods in org.jboss.remoting with parameters of type InvokerLocator | |
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 ClientInvoker |
InvokerRegistry.createClientInvoker(InvokerLocator locator,
java.util.Map configuration)
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,
java.util.Map configuration)
create a ServerInvoker instance, using the specific Invoker locator data and an implementation of the ServerInvocationHandler interface along with |
static void |
InvokerRegistry.updateServerInvokerLocator(InvokerLocator locator,
InvokerLocator newLocator)
This is needed by the ServerInvoker since it may change the port being used (if port specified was <= 0) to next available port. |
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 |
InvocationRequest.setLocator(InvokerLocator locator)
|
void |
AbstractInvoker.addClientLocator(java.lang.String listenerId,
InvokerLocator locator)
Sets the callback server locator for the specified callback listener id |
protected void |
ServerInvoker.preProcess(java.lang.String sessionId,
ClassBytes arg,
java.util.Map payload,
InvokerLocator locator)
called prior to an invocation |
protected void |
ServerInvoker.postProcess(java.lang.String sessionId,
java.lang.Object param,
java.util.Map payload,
InvokerLocator locator)
called after an invocation |
Constructors in org.jboss.remoting with parameters of type InvokerLocator | |
RemoteClientInvoker(InvokerLocator locator)
|
|
RemoteClientInvoker(InvokerLocator locator,
java.util.Map configuration)
|
|
Client(InvokerLocator locator)
Constructs a remoting client with intended target server specified via the lcoator, without specifing a remote subsystem or including any metadata. |
|
Client(InvokerLocator locator,
java.util.Map configuration)
Constructs a remoting client with intended target server specified via the locator and configuration metadata. |
|
Client(InvokerLocator locator,
java.lang.String subsystem)
Constructs a remoting client with intended target server specified via the locator and intended subsystem on server for invocations to be routed to. |
|
Client(InvokerLocator locator,
java.lang.String subsystem,
java.util.Map configuration)
Constructs a remoting client with intended target server specified via the locator, intended subsystem on the server for invocations to be routed to, and configuration metadata. |
|
Client(java.lang.ClassLoader cl,
InvokerLocator locator,
java.lang.String subsystem,
java.util.Map configuration)
Deprecated. This constructor should not be used any more as will no longer take into account the classloader specified as a parameter. |
|
SubsystemNotSupported(java.lang.String subsystem,
InvokerLocator locator)
|
|
InvocationRequest(java.lang.String sessionId,
java.lang.String subsystem,
java.lang.Object arg,
java.util.Map requestPayload,
java.util.Map returnPayload,
InvokerLocator locator)
|
|
AbstractInvoker(InvokerLocator locator)
|
|
AbstractInvoker(InvokerLocator locator,
java.util.Map configuration)
|
|
ServerInvoker(InvokerLocator locator)
|
|
ServerInvoker(InvokerLocator locator,
java.util.Map configuration)
|
Uses of InvokerLocator in org.jboss.remoting.callback |
Methods in org.jboss.remoting.callback that return InvokerLocator | |
InvokerLocator |
Callback.getServerLocator()
Gets the locator for the target server where the callback was generated (this will be for the same server that the callback client was registered). |
Constructors in org.jboss.remoting.callback with parameters of type InvokerLocator | |
ServerInvokerCallbackHandler(InvocationRequest invocation,
InvokerLocator serverLocator,
ServerInvoker owner)
|
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 |
InvokerLocator |
ServerInvokerMetadata.getInvokerLocator()
|
Constructors in org.jboss.remoting.detection with parameters of type InvokerLocator | |
ServerInvokerMetadata(InvokerLocator locator,
java.lang.String[] supportedSubsystems)
|
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 |
MarshalFactory.getMarshaller(InvokerLocator locator,
java.lang.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,
java.lang.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. |
static Marshaller |
MarshallerLoaderClient.getMarshaller(InvokerLocator loaderLocator,
java.lang.String dataType,
java.lang.ClassLoader classByteLoader)
Will call on marshall loader server to load marshaller for given data type. |
static UnMarshaller |
MarshallerLoaderClient.getUnMarshaller(InvokerLocator loaderLocator,
java.lang.String dataType,
java.lang.ClassLoader classByteLoader)
Will call on marshall loader server to load unmarshaller for given data type. |
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 | |
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,
java.lang.String type,
Identity identity,
InvokerLocator[] locators)
|
|
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 |
IdentityFilter.filter(Identity identity,
InvokerLocator[] locators)
called to apply a filter when selecting 0..* servers on the network |
boolean |
InvokerProtocolFilter.filter(Identity identity,
InvokerLocator[] locators)
called to apply a filter when selecting 0..* servers on the network |
Uses of InvokerLocator in org.jboss.remoting.samples.callback |
Methods in org.jboss.remoting.samples.callback with parameters of type InvokerLocator | |
void |
CallbackClient.setupServer(InvokerLocator locator)
Sets up the callback server that the target remoting server can call on with the callbacks that it generates. |
Uses of InvokerLocator in org.jboss.remoting.samples.chat.server |
Methods in org.jboss.remoting.samples.chat.server that return InvokerLocator | |
protected InvokerLocator |
ChatManager.createChat(java.lang.Object[] args)
|
Uses of InvokerLocator in org.jboss.remoting.transport |
Methods in org.jboss.remoting.transport that return InvokerLocator | |
InvokerLocator |
ClientInvoker.getClientLocator(java.lang.String listenerId)
Gets the client locator. |
InvokerLocator |
ConnectorMBean.getLocator()
Returns the locator to the connector. |
InvokerLocator |
Connector.getLocator()
Returns the locator to the connector. |
Methods in org.jboss.remoting.transport with parameters of type InvokerLocator | |
void |
ClientInvoker.addClientLocator(java.lang.String listenerId,
InvokerLocator locator)
This should be set when want to override the default behavior of automatically getting s suitable locator. |
Constructors in org.jboss.remoting.transport with parameters of type InvokerLocator | |
Connector(InvokerLocator locator)
Creates Connector with specified locator. |
|
Connector(InvokerLocator locator,
java.util.Map configuration)
Constructs connector for given locator and configuration. |
Uses of InvokerLocator in org.jboss.remoting.transport.coyote |
Constructors in org.jboss.remoting.transport.coyote with parameters of type InvokerLocator | |
CoyoteInvoker(InvokerLocator locator)
|
|
CoyoteInvoker(InvokerLocator locator,
java.util.Map configuration)
|
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,
java.util.Map configuration)
|
|
HTTPClientInvoker(InvokerLocator locator)
|
|
HTTPClientInvoker(InvokerLocator locator,
java.util.Map configuration)
|
Uses of InvokerLocator in org.jboss.remoting.transport.http.ssl |
Constructors in org.jboss.remoting.transport.http.ssl with parameters of type InvokerLocator | |
HTTPSClientInvoker(InvokerLocator locator)
|
|
HTTPSClientInvoker(InvokerLocator locator,
java.util.Map configuration)
|
|
HTTPSServerInvoker(InvokerLocator locator)
|
|
HTTPSServerInvoker(InvokerLocator locator,
java.util.Map configuration)
|
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.multiplex |
Constructors in org.jboss.remoting.transport.multiplex with parameters of type InvokerLocator | |
MultiplexServerInvoker(InvokerLocator locator)
Create a new MultiplexServerInvoker. |
|
MultiplexServerInvoker(InvokerLocator locator,
java.util.Map configuration)
Create a new MultiplexServerInvoker. |
|
MultiplexServerInvoker(InvokerLocator locator,
java.util.Map configuration,
java.net.ServerSocket serverSocket,
java.net.Socket socket,
java.util.Map virtualServerInvokers)
Create a new MultiplexServerInvoker. |
|
MultiplexClientInvoker(InvokerLocator locator)
Create a new MultiplexClientInvoker. |
|
MultiplexClientInvoker(InvokerLocator locator,
java.util.Map configuration)
Create a new MultiplexClientInvoker. |
Uses of InvokerLocator in org.jboss.remoting.transport.multiplex.ssl |
Constructors in org.jboss.remoting.transport.multiplex.ssl with parameters of type InvokerLocator | |
SSLMultiplexServerInvoker(InvokerLocator locator)
|
|
SSLMultiplexServerInvoker(InvokerLocator locator,
java.util.Map configuration)
|
|
SSLMultiplexClientInvoker(InvokerLocator locator)
|
|
SSLMultiplexClientInvoker(InvokerLocator locator,
java.util.Map configuration)
|
Uses of InvokerLocator in org.jboss.remoting.transport.rmi |
Constructors in org.jboss.remoting.transport.rmi with parameters of type InvokerLocator | |
RMIClientInvoker(InvokerLocator locator)
|
|
RMIClientInvoker(InvokerLocator locator,
java.util.Map configuration)
|
|
RMIServerInvoker(InvokerLocator locator)
|
|
RMIServerInvoker(InvokerLocator locator,
java.util.Map configuration)
|
Uses of InvokerLocator in org.jboss.remoting.transport.servlet |
Constructors in org.jboss.remoting.transport.servlet with parameters of type InvokerLocator | |
ServletServerInvoker(InvokerLocator locator)
|
|
ServletServerInvoker(InvokerLocator locator,
java.util.Map configuration)
|
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,
java.util.Map configuration)
|
|
SocketClientInvoker(InvokerLocator locator)
|
|
SocketClientInvoker(InvokerLocator locator,
java.util.Map configuration)
|
Uses of InvokerLocator in org.jboss.remoting.transport.socket.ssl |
Constructors in org.jboss.remoting.transport.socket.ssl with parameters of type InvokerLocator | |
SSLSocketClientInvoker(InvokerLocator locator)
|
|
SSLSocketClientInvoker(InvokerLocator locator,
java.util.Map configuration)
|
|
SSLSocketServerInvoker(InvokerLocator locator)
|
|
SSLSocketServerInvoker(InvokerLocator locator,
java.util.Map configuration)
|
Uses of InvokerLocator in org.jboss.remoting.transport.web |
Constructors in org.jboss.remoting.transport.web with parameters of type InvokerLocator | |
WebServerInvoker(InvokerLocator locator)
|
|
WebServerInvoker(InvokerLocator locator,
java.util.Map configuration)
|
Uses of InvokerLocator in org.jboss.remoting.transporter |
Methods in org.jboss.remoting.transporter with parameters of type InvokerLocator | |
static java.lang.Object |
TransporterClient.createTransporterClient(InvokerLocator locator,
java.lang.Class targetClass)
Create a remote proxy to a POJO on a remote server. |
static TransporterServer |
TransporterServer.createTransporterServer(InvokerLocator locator,
java.lang.Object target,
java.lang.String subsystem,
boolean isClustered)
Creates a remoting server based on given locator. |
static TransporterServer |
TransporterServer.createTransporterServer(InvokerLocator locator,
java.lang.Object target,
java.lang.String subsystem)
Creates a remoting server based on given locator. |
static TransporterServer |
TransporterServer.createTransporterServer(InvokerLocator locator,
java.lang.Object target)
Creates a remoting server based on given locator. |
Constructors in org.jboss.remoting.transporter with parameters of type InvokerLocator | |
TransporterServer(InvokerLocator locator,
java.lang.Object target,
java.lang.String subsystem)
Creates a remoting server using the provided locator and subsytem and creating a TransporterHandler which takes the specified target object. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |