Package com.flaptor.indextank.rpc

Examples of com.flaptor.indextank.rpc.RawLogInfo


        return optimizer.getIndexInfo(indexCode);
    }

    @Override
    public RawLogInfo get_raw_log_info() throws TException {
        RawLogInfo info = new RawLogInfo();
        long t = dealer.nextTimestamp;
        info.set_dealer_next_timestamp(t);
        RawLog log = new RawLog(root, RawLog.DEFAULT_SEGMENT_SIZE);
        for (Segment s : log.getLiveSegments()) {
            info.add_to_undealt_segments(s.getInfo());
        }
        return info;
    }
View Full Code Here

TOP

Related Classes of com.flaptor.indextank.rpc.RawLogInfo

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.