Examples of ByteSizeValue


Examples of org.elasticsearch.common.unit.ByteSizeValue

        public ByteSizeValue getFree() {
            return free();
        }

        public ByteSizeValue used() {
            return new ByteSizeValue(used);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

            out.writeLong(actualFree);
            out.writeLong(actualUsed);
        }

        public ByteSizeValue used() {
            return new ByteSizeValue(used);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public short getUsedPercent() {
            return usedPercent();
        }

        public ByteSizeValue free() {
            return new ByteSizeValue(free);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public short getFreePercent() {
            return freePercent();
        }

        public ByteSizeValue actualFree() {
            return new ByteSizeValue(actualFree);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

        public ByteSizeValue getActualFree() {
            return actualFree();
        }

        public ByteSizeValue actualUsed() {
            return new ByteSizeValue(actualUsed);
        }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

            public long getEndTime() {
                return endTime();
            }

            public ByteSizeValue max() {
                return new ByteSizeValue(max);
            }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

            public ByteSizeValue getMax() {
                return max();
            }

            public ByteSizeValue afterUsed() {
                return new ByteSizeValue(afterUsed);
            }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

            public ByteSizeValue getAfterUsed() {
                return afterUsed();
            }

            public ByteSizeValue beforeUsed() {
                return new ByteSizeValue(beforeUsed);
            }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

            public ByteSizeValue getBeforeUsed() {
                return beforeUsed();
            }

            public ByteSizeValue reclaimed() {
                return new ByteSizeValue(beforeUsed - afterUsed);
            }
View Full Code Here

Examples of org.elasticsearch.common.unit.ByteSizeValue

            out.writeVLong(nonHeapCommitted);
            out.writeVLong(nonHeapUsed);
        }

        public ByteSizeValue heapCommitted() {
            return new ByteSizeValue(heapCommitted);
        }
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.