Package com.tangosol.util.filter

Examples of com.tangosol.util.filter.KeyAssociatedFilter


@SuppressWarnings("deprecation")
class TxUtils {

  public static final Filter transformFilter(Filter f, int readVersion) {
    if (f instanceof KeyAssociatedFilter) {
      KeyAssociatedFilter kaf = (KeyAssociatedFilter)f;
      Filter nested = kaf.getFilter();
      Object hostKey = kaf.getHostKey();
      return new KeyAssociatedFilter(transformFilter(nested, readVersion), hostKey);
    }
    else if (f instanceof IndexAwareFilter){
      return new TxIndexAwareFilterWrapper((IndexAwareFilter) f, readVersion);
    }
    else {
View Full Code Here

TOP

Related Classes of com.tangosol.util.filter.KeyAssociatedFilter

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.