Package com.fasterxml.clustermate.api.msg

Examples of com.fasterxml.clustermate.api.msg.ItemInfo


        }
        if (raw.isReplicated()) {
            sb.append(ItemInfo.FLAG_REPLICA);
        }
        String flags = (sb.length() == 0) ? "" : sb.toString();
        return new ItemInfo(raw.getLastModified(), raw.getActualUncompressedLength(), compLen,
                compression, raw.getContentHash(),
                flags);
    }
View Full Code Here

TOP

Related Classes of com.fasterxml.clustermate.api.msg.ItemInfo

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.