Package org.apache.flink.runtime.operators.resettable

Examples of org.apache.flink.runtime.operators.resettable.SpillingResettableMutableObjectIterator


        barrier.startReading();
        this.tempBarriers[i] = barrier;
        this.inputs[i] = null;
      } else if (cached) {
        @SuppressWarnings({ "unchecked", "rawtypes" })
        SpillingResettableMutableObjectIterator<?> iter = new SpillingResettableMutableObjectIterator(
          getInput(i), this.inputSerializers[i].getSerializer(), getMemoryManager(), getIOManager(), memoryPages, this);
        this.resettableInputs[i] = iter;
        this.inputs[i] = iter;
      }
    }
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.operators.resettable.SpillingResettableMutableObjectIterator

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.