Package com.tangosol.util

Examples of com.tangosol.util.ValueExtractor


  @Override
  @SuppressWarnings("unchecked")
  public void addIndex(ValueExtractor extractor, boolean fOrdered, Comparator comparator) {
    // does not count as cache operation
    ValueExtractor transformed = adapter.transformIndexExtractor(this, extractor);
    nestedCache.addIndex(transformed, fOrdered, comparator);
  }
View Full Code Here


  }

  @Override
  public void removeIndex(ValueExtractor extractor) {
    // does not count as cache operation
    ValueExtractor transformed = adapter.transformIndexExtractor(this, extractor);
    nestedCache.removeIndex(transformed);
  }
View Full Code Here

TOP

Related Classes of com.tangosol.util.ValueExtractor

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.