Package org.jboss.remoting.marshal

Examples of org.jboss.remoting.marshal.PreferredStreamMarshaller


         log.warn("got null marshaller");
     
      OutputStream os = socket.getOutputStream();
      if (marshaller instanceof PreferredStreamMarshaller)
      {
         PreferredStreamMarshaller psm = (PreferredStreamMarshaller) marshaller;
         os = psm.getMarshallingStream(os);
      }
     
      return os;
   }
View Full Code Here

TOP

Related Classes of org.jboss.remoting.marshal.PreferredStreamMarshaller

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.