Package rocket.serialization.client

Examples of rocket.serialization.client.ObjectOutputStream.writeInt()


  protected void commitParameterTypes() {
    final List<String> parameterTypes = this.getParameterTypes();

    final ObjectOutputStream outputStream = this.getObjectOutputStream();
    outputStream.writeInt(parameterTypes.size());

    final Iterator<String> iterator = parameterTypes.iterator();
    while (iterator.hasNext()) {
      outputStream.writeObject(iterator.next());
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.