Uses of Class
org.apache.flink.runtime.io.disk.iomanager.RequestQueue
Packages that use RequestQueue
-
Uses of RequestQueue in org.apache.flink.runtime.io.disk.iomanager
Fields in org.apache.flink.runtime.io.disk.iomanager declared as RequestQueueModifier and TypeFieldDescriptionprotected final RequestQueue<R>AsynchronousFileIOChannel.requestQueueA request queue for submitting asynchronous requests to the corresponding IO worker thread.Constructors in org.apache.flink.runtime.io.disk.iomanager with parameters of type RequestQueueModifierConstructorDescriptionprotectedAsynchronousBlockReader(FileIOChannel.ID channelID, RequestQueue<org.apache.flink.runtime.io.disk.iomanager.ReadRequest> requestQueue, LinkedBlockingQueue<org.apache.flink.core.memory.MemorySegment> returnSegments) Creates a new block channel reader for the given channel.protectedAsynchronousBlockWriter(FileIOChannel.ID channelID, RequestQueue<org.apache.flink.runtime.io.disk.iomanager.WriteRequest> requestQueue, LinkedBlockingQueue<org.apache.flink.core.memory.MemorySegment> returnSegments) Creates a new block channel writer for the given channel.protectedAsynchronousBlockWriterWithCallback(FileIOChannel.ID channelID, RequestQueue<org.apache.flink.runtime.io.disk.iomanager.WriteRequest> requestQueue, RequestDoneCallback<org.apache.flink.core.memory.MemorySegment> callback) Creates a new asynchronous block writer for the given channel.protectedAsynchronousBufferFileReader(FileIOChannel.ID channelID, RequestQueue<org.apache.flink.runtime.io.disk.iomanager.ReadRequest> requestQueue, RequestDoneCallback<Buffer> callback) protectedAsynchronousBufferFileSegmentReader(FileIOChannel.ID channelID, RequestQueue<org.apache.flink.runtime.io.disk.iomanager.ReadRequest> requestQueue, RequestDoneCallback<FileSegment> callback) protectedAsynchronousBufferFileWriter(FileIOChannel.ID channelID, RequestQueue<org.apache.flink.runtime.io.disk.iomanager.WriteRequest> requestQueue) protectedAsynchronousBulkBlockReader(FileIOChannel.ID channelID, RequestQueue<org.apache.flink.runtime.io.disk.iomanager.ReadRequest> requestQueue, List<org.apache.flink.core.memory.MemorySegment> sourceSegments, int numBlocks) protectedAsynchronousFileIOChannel(FileIOChannel.ID channelID, RequestQueue<R> requestQueue, RequestDoneCallback<T> callback, boolean writeEnabled) Creates a new channel access to the path indicated by the given ID.