Package org.apache.flink.runtime.io.network.bufferprovider

Examples of org.apache.flink.runtime.io.network.bufferprovider.LocalBufferPoolOwner


      }
    }

    // clear and remove INPUT side buffer pools
    for (GateID id : environment.getInputGateIDs()) {
      LocalBufferPoolOwner bufferPool = this.localBuffersPools.remove(id);
      if (bufferPool != null) {
        bufferPool.clearLocalBufferPool();
      }
    }

    // clear and remove OUTPUT side buffer pool
    LocalBufferPoolOwner bufferPool = this.localBuffersPools.remove(executionId);
    if (bufferPool != null) {
      bufferPool.clearLocalBufferPool();
    }

    // the number of channels per buffers has changed after unregistering the task
    // => redistribute the number of designated buffers of the registered local buffer pools
    redistributeBuffers();
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.io.network.bufferprovider.LocalBufferPoolOwner

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.