|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of UnMarshaller in org.jboss.remoting |
---|
Methods in org.jboss.remoting that return UnMarshaller | |
---|---|
UnMarshaller |
MicroRemoteClientInvoker.getUnMarshaller()
|
Methods in org.jboss.remoting with parameters of type UnMarshaller | |
---|---|
void |
MicroRemoteClientInvoker.setUnMarshaller(UnMarshaller unmarshaller)
|
void |
Client.setUnMarshaller(UnMarshaller unmarshaller)
Sets the unmarshaller implementation that should be used by the client invoker (transport). |
protected abstract java.lang.Object |
MicroRemoteClientInvoker.transport(java.lang.String sessionId,
java.lang.Object invocation,
java.util.Map metadata,
Marshaller marshaller,
UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.marshal |
---|
Subinterfaces of UnMarshaller in org.jboss.remoting.marshal | |
---|---|
interface |
PreferredStreamUnMarshaller
A PreferedStreamUnMarshaller can create from a raw InputStream the particular InputStream it prefers to use |
interface |
SerialUnMarshaller
|
interface |
VersionedUnMarshaller
|
Methods in org.jboss.remoting.marshal that return UnMarshaller | |
---|---|
UnMarshaller |
UnMarshaller.cloneUnMarshaller()
|
static UnMarshaller |
MarshalFactory.getUnMarshaller(java.lang.Class classType)
Returns unmarshaller by class type. |
static UnMarshaller |
MarshalFactory.getUnMarshaller(java.lang.Class classType,
java.lang.String serializationType)
|
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 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. |
static UnMarshaller |
MarshalFactory.getUnMarshaller(java.lang.String dataType)
Gets the marshaller based on data type (i.e. |
static UnMarshaller |
MarshalFactory.getUnMarshaller(java.lang.String dataType,
java.lang.String serializationType)
|
Methods in org.jboss.remoting.marshal with parameters of type UnMarshaller | |
---|---|
static void |
MarshalFactory.addMarshaller(java.lang.Class classType,
Marshaller marshaller,
UnMarshaller unMarshaller)
Will add the marshaller and unmarshaller based on class type. |
static void |
MarshalFactory.addMarshaller(java.lang.String dataType,
Marshaller marshaller,
UnMarshaller unMarshaller)
Adds the marshaller and unmarshaller based on data type. |
Uses of UnMarshaller in org.jboss.remoting.marshal.compress |
---|
Classes in org.jboss.remoting.marshal.compress that implement UnMarshaller | |
---|---|
class |
CompressingUnMarshaller
CompressingMarshaller and CompressingUnMarshaller are a general
purpose compressing marshaller / decompressing unmarshaller pair based on Java's GZIP facilities. |
Methods in org.jboss.remoting.marshal.compress that return UnMarshaller | |
---|---|
UnMarshaller |
CompressingUnMarshaller.cloneUnMarshaller()
Returns a new CompressingUnMarshaller |
Constructors in org.jboss.remoting.marshal.compress with parameters of type UnMarshaller | |
---|---|
CompressingUnMarshaller(UnMarshaller unMarshaller)
Create a new CompressingUnMarshaller. |
Uses of UnMarshaller in org.jboss.remoting.marshal.encryption |
---|
Classes in org.jboss.remoting.marshal.encryption that implement UnMarshaller | |
---|---|
class |
EncryptingUnMarshaller
EncryptingMarshaller and EncryptingUnMarshaller are a general
purpose encrypting marshaller / decompressing unmarshaller pair based on
Java's crypto stream facilities. |
Methods in org.jboss.remoting.marshal.encryption that return UnMarshaller | |
---|---|
UnMarshaller |
EncryptingUnMarshaller.cloneUnMarshaller()
Returns a new EncryptingUnMarshaller |
Constructors in org.jboss.remoting.marshal.encryption with parameters of type UnMarshaller | |
---|---|
EncryptingUnMarshaller(UnMarshaller unMarshaller)
Create a new EncryptingUnMarshaller. |
Uses of UnMarshaller in org.jboss.remoting.marshal.http |
---|
Classes in org.jboss.remoting.marshal.http that implement UnMarshaller | |
---|---|
class |
HTTPUnMarshaller
|
Methods in org.jboss.remoting.marshal.http that return UnMarshaller | |
---|---|
UnMarshaller |
HTTPUnMarshaller.cloneUnMarshaller()
|
Uses of UnMarshaller in org.jboss.remoting.marshal.rmi |
---|
Classes in org.jboss.remoting.marshal.rmi that implement UnMarshaller | |
---|---|
class |
RMIUnMarshaller
This basically does nothing since RMI will handle marshalling by default. |
Methods in org.jboss.remoting.marshal.rmi that return UnMarshaller | |
---|---|
UnMarshaller |
RMIUnMarshaller.cloneUnMarshaller()
|
Uses of UnMarshaller in org.jboss.remoting.marshal.serializable |
---|
Classes in org.jboss.remoting.marshal.serializable that implement UnMarshaller | |
---|---|
class |
SerializableUnMarshaller
Will perform the deserialization of objects off the wire. |
Methods in org.jboss.remoting.marshal.serializable that return UnMarshaller | |
---|---|
UnMarshaller |
SerializableUnMarshaller.cloneUnMarshaller()
|
Uses of UnMarshaller in org.jboss.remoting.transport |
---|
Methods in org.jboss.remoting.transport that return UnMarshaller | |
---|---|
UnMarshaller |
ClientInvoker.getUnMarshaller()
|
Methods in org.jboss.remoting.transport with parameters of type UnMarshaller | |
---|---|
void |
ClientInvoker.setUnMarshaller(UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.transport.bisocket |
---|
Methods in org.jboss.remoting.transport.bisocket with parameters of type UnMarshaller | |
---|---|
protected java.lang.Object |
BisocketClientInvoker.transport(java.lang.String sessionId,
java.lang.Object invocation,
java.util.Map metadata,
Marshaller marshaller,
UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.transport.http |
---|
Methods in org.jboss.remoting.transport.http with parameters of type UnMarshaller | |
---|---|
protected java.lang.Object |
HTTPClientInvoker.transport(java.lang.String sessionId,
java.lang.Object invocation,
java.util.Map metadata,
Marshaller marshaller,
UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.transport.local |
---|
Methods in org.jboss.remoting.transport.local that return UnMarshaller | |
---|---|
UnMarshaller |
LocalClientInvoker.getUnMarshaller()
|
Methods in org.jboss.remoting.transport.local with parameters of type UnMarshaller | |
---|---|
void |
LocalClientInvoker.setUnMarshaller(UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.transport.multiplex |
---|
Methods in org.jboss.remoting.transport.multiplex with parameters of type UnMarshaller | |
---|---|
protected java.lang.Object |
MultiplexClientInvoker.transport(java.lang.String sessionId,
java.lang.Object invocation,
java.util.Map metadata,
Marshaller marshaller,
UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.transport.rmi |
---|
Methods in org.jboss.remoting.transport.rmi with parameters of type UnMarshaller | |
---|---|
protected java.lang.Object |
RMIClientInvoker.transport(java.lang.String sessionId,
java.lang.Object invocation,
java.util.Map metadata,
Marshaller marshaller,
UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.transport.socket |
---|
Fields in org.jboss.remoting.transport.socket declared as UnMarshaller | |
---|---|
protected UnMarshaller |
ServerThread.unmarshaller
|
Methods in org.jboss.remoting.transport.socket with parameters of type UnMarshaller | |
---|---|
protected java.io.InputStream |
ClientSocketWrapper.createInputStream(java.lang.String serializationType,
java.net.Socket socket,
UnMarshaller unmarshaller)
|
protected SocketWrapper |
MicroSocketClientInvoker.getConnection(Marshaller marshaller,
UnMarshaller unmarshaller,
int timeAllowed)
|
protected java.lang.Object |
MicroSocketClientInvoker.transport(java.lang.String sessionID,
java.lang.Object invocation,
java.util.Map metadata,
Marshaller marshaller,
UnMarshaller unmarshaller)
|
Uses of UnMarshaller in org.jboss.remoting.transport.web |
---|
Methods in org.jboss.remoting.transport.web that return UnMarshaller | |
---|---|
UnMarshaller |
WebServerInvoker.getUnMarshaller()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |