Package org.apache.cassandra.streaming

Examples of org.apache.cassandra.streaming.StreamSummary$StreamSummarySerializer


    }

    public static StreamSummary fromCompositeData(CompositeData cd)
    {
        Object[] values = cd.getAll(ITEM_NAMES);
        return new StreamSummary(UUID.fromString((String) values[0]),
                                 (int) values[1],
                                 (long) values[2]);
    }
View Full Code Here

TOP

Related Classes of org.apache.cassandra.streaming.StreamSummary$StreamSummarySerializer

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.