Package rocket.serialization.server

Examples of rocket.serialization.server.ServerObjectInputStream


   *
   * @param stream
   * @return
   */
  public ObjectInputStream createObjectInputStream(final String stream) {
    final ServerObjectInputStream inputStream = new ServerObjectInputStream(stream);
    inputStream.setObjectReaders(this.createObjectReaders());
    return inputStream;
  }
View Full Code Here

TOP

Related Classes of rocket.serialization.server.ServerObjectInputStream

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.