Package com.bubble.serializer

Examples of com.bubble.serializer.LightDeserializationContext


      buffer.clear();
    }
    channel.close();
   
    channel =  new FileInputStream(filePrefix).getChannel();   
    LightDeserializationContext dc = new LightDeserializationContext();
    long start = System.currentTimeMillis();
    for (int i = 0; i < loops; i++) {
      channel.read(buffer);
      buffer.flip();
      dc.deserialize(buffer);
      buffer.compact();
    }
    long total = System.currentTimeMillis()- start;
    channel.close();
    return total;
View Full Code Here

TOP

Related Classes of com.bubble.serializer.LightDeserializationContext

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.