Package com.hazelcast.monitor

Examples of com.hazelcast.monitor.NearCacheStats


        for (int i = 0; i < size; i++) {
            final Future<Integer> async = map.getAsync(i);
            assertNull(async.get());
        }

        NearCacheStats stats = map.getLocalMapStats().getNearCacheStats();
        assertEquals(size, stats.getHits());

    }
View Full Code Here

TOP

Related Classes of com.hazelcast.monitor.NearCacheStats

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.