Package com.shop.util.chunked

Examples of com.shop.util.chunked.ChunkedByteArrayOutputStream


  @Override
  public ChunkedByteArray serialize(SCDataBlock block) throws Exception
  {
    ChunkedByteArray        chunked = new ChunkedByteArray();
    ObjectOutputStream         out = new ObjectOutputStream(new GZIPOutputStream(new ChunkedByteArrayOutputStream(chunked)));

    out.writeInt(FILE_VERSION);
    out.writeInt(block.getVersionNumber());
    out.writeLong(block.getTTL());
    out.writeUTF(block.getKey());
View Full Code Here

TOP

Related Classes of com.shop.util.chunked.ChunkedByteArrayOutputStream

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.