Package com.netflix.zeno.fastblob.state

Examples of com.netflix.zeno.fastblob.state.FreeOrdinalTracker.serializeTo()


        tracker.returnOrdinalToPool(30);
        tracker.returnOrdinalToPool(40);

        ByteArrayOutputStream baos = new ByteArrayOutputStream();

        tracker.serializeTo(baos);

        FreeOrdinalTracker deserializedTracker = FreeOrdinalTracker.deserializeFrom(new ByteArrayInputStream(baos.toByteArray()));

        Assert.assertEquals(40, deserializedTracker.getFreeOrdinal());
        Assert.assertEquals(30, deserializedTracker.getFreeOrdinal());
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.