Package com.gemstone.gemfire.cache.util

Examples of com.gemstone.gemfire.cache.util.ObjectSizer


    assertEquals(EvictionAction.LOCAL_DESTROY, evicAttr.getAction());
    assertEquals(EvictionAlgorithm.LRU_MEMORY, evicAttr.getAlgorithm());
    // for some reason GemFire resets this to 56 on my machine (not sure
    // why)
    // assertEquals(10, evicAttr.getMaximum());
    ObjectSizer sizer = evicAttr.getObjectSizer();
    assertEquals(SimpleObjectSizer.class, sizer.getClass());
  }
View Full Code Here

TOP

Related Classes of com.gemstone.gemfire.cache.util.ObjectSizer

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.