Package org.apache.flink.runtime.io.disk

Examples of org.apache.flink.runtime.io.disk.RandomAccessOutputView


    return this.finalBufferLimit;
  }
 
  final SeekableDataOutputView getWriteView() {
    if (this.overwriteBuffer == null) {
      this.overwriteBuffer = new RandomAccessOutputView(this.partitionBuffers, this.memorySegmentSize);
    }
    return this.overwriteBuffer;
  }
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.io.disk.RandomAccessOutputView

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.