Package com.alibaba.dubbo.common.serialize.support.java

Examples of com.alibaba.dubbo.common.serialize.support.java.CompactedObjectInputStream


      out.writeObject(bean);
      os.close();
      if( i == 0 )
        len = os.toByteArray().length;
      ByteArrayInputStream is = new ByteArrayInputStream(os.toByteArray());
      CompactedObjectInputStream in = new CompactedObjectInputStream(is);
      assertEquals(in.readObject().getClass(), Bean.class);
    }
    System.out.println("compacted java write and parse 500 times in " + (System.currentTimeMillis()-now)+"ms, size " + len);
  }
View Full Code Here

TOP

Related Classes of com.alibaba.dubbo.common.serialize.support.java.CompactedObjectInputStream

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.