Package org.apache.crunch.util

Examples of org.apache.crunch.util.DelegatingReadableData


  @Override
  protected ReadableData<S> getReadableDataInternal() {
    if (getOnlyParent() instanceof BaseGroupedTable) {
      return materializedData();
    }
    return new DelegatingReadableData(getOnlyParent().asReadable(false), fn);
  }


  @Override
  protected ReadableData<Pair<K, V>> getReadableDataInternal() {
    if (getOnlyParent() instanceof BaseGroupedTable) {
      return materializedData();
    }
    return new DelegatingReadableData(getOnlyParent().asReadable(false), fn);
  }

TOP

Related Classes of org.apache.crunch.util.DelegatingReadableData

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.