Package com.cloudhopper.datastore.util

Examples of com.cloudhopper.datastore.util.CompositeKey


    }

    public CompositeKey decode(byte[] encoded) {
        int queueId = decodeQueueId(encoded);
        long itemId = decodeItemId(encoded);
        return new CompositeKey(queueId, itemId);
    }
View Full Code Here

TOP

Related Classes of com.cloudhopper.datastore.util.CompositeKey

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.