Uses of Interface
org.jboss.remoting.marshal.UnMarshaller

Packages that use UnMarshaller
org.jboss.remoting   
org.jboss.remoting.marshal   
org.jboss.remoting.marshal.compress   
org.jboss.remoting.marshal.http   
org.jboss.remoting.marshal.rmi   
org.jboss.remoting.marshal.serializable   
org.jboss.remoting.transport   
org.jboss.remoting.transport.http   
org.jboss.remoting.transport.local   
org.jboss.remoting.transport.multiplex   
org.jboss.remoting.transport.rmi   
org.jboss.remoting.transport.socket   
org.jboss.remoting.transport.web   
 

Uses of UnMarshaller in org.jboss.remoting
 

Methods in org.jboss.remoting that return UnMarshaller
 UnMarshaller RemoteClientInvoker.getUnMarshaller()
           
 

Methods in org.jboss.remoting with parameters of type UnMarshaller
protected abstract  java.lang.Object RemoteClientInvoker.transport(java.lang.String sessionId, java.lang.Object invocation, java.util.Map metadata, Marshaller marshaller, UnMarshaller unmarshaller)
           
 void RemoteClientInvoker.setUnMarshaller(UnMarshaller unmarshaller)
           
 void Client.setUnMarshaller(UnMarshaller unmarshaller)
          Sets the unmarshaller implementation that should be used by the client invoker (transport).
 

Uses of UnMarshaller in org.jboss.remoting.marshal
 

Subinterfaces of UnMarshaller in org.jboss.remoting.marshal
 interface SerialUnMarshaller
           
 

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(java.lang.String dataType, java.lang.String serializationType)
           
static UnMarshaller MarshalFactory.getUnMarshaller(java.lang.String dataType)
          Gets the marshaller based on data type (i.e.
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.
 

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

Methods in org.jboss.remoting.transport.socket with parameters of type UnMarshaller
protected  java.lang.Object SocketClientInvoker.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()
           
 



Copyright ? 1998-2005 JBoss Inc . All Rights Reserved.