Uses of Class
org.apache.flink.runtime.io.network.buffer.Buffer.DataType
-
-
Uses of Buffer.DataType in org.apache.flink.runtime.io.network.buffer
Fields in org.apache.flink.runtime.io.network.buffer declared as Buffer.DataType Modifier and Type Field Description protected Buffer.DataTypeAbstractCompositeBuffer. dataTypeMethods in org.apache.flink.runtime.io.network.buffer that return Buffer.DataType Modifier and Type Method Description Buffer.DataTypeAbstractCompositeBuffer. getDataType()static Buffer.DataTypeBuffer.DataType. getDataType(AbstractEvent event, boolean hasPriority)Buffer.DataTypeBuffer. getDataType()Gets the type of data this buffer represents.Buffer.DataTypeBufferBuilder. getDataType()Gets the data type of the internal buffer.Buffer.DataTypeBufferConsumer. getDataType()Buffer.DataTypeBufferHeader. getDataType()Buffer.DataTypeFileRegionBuffer. getDataType()Buffer.DataTypeNetworkBuffer. getDataType()Buffer.DataTypeReadOnlySlicedNetworkBuffer. getDataType()static Buffer.DataTypeBuffer.DataType. valueOf(String name)Returns the enum constant of this type with the specified name.static Buffer.DataType[]Buffer.DataType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.flink.runtime.io.network.buffer with parameters of type Buffer.DataType Modifier and Type Method Description voidAbstractCompositeBuffer. setDataType(Buffer.DataType dataType)voidBuffer. setDataType(Buffer.DataType dataType)Sets the type of data this buffer represents.voidBufferBuilder. setDataType(Buffer.DataType dataType)Sets the data type of the internal buffer.voidFileRegionBuffer. setDataType(Buffer.DataType dataType)voidNetworkBuffer. setDataType(Buffer.DataType dataType)voidReadOnlySlicedNetworkBuffer. setDataType(Buffer.DataType dataType)Constructors in org.apache.flink.runtime.io.network.buffer with parameters of type Buffer.DataType Constructor Description AbstractCompositeBuffer(Buffer.DataType dataType, int length, boolean isCompressed)BufferHeader(boolean isCompressed, int length, Buffer.DataType dataType)CompositeBuffer(Buffer.DataType dataType, int length, boolean isCompressed)FileRegionBuffer(FileChannel fileChannel, long fileChannelPosition, int bufferSize, Buffer.DataType dataType, boolean isCompressed)FullyFilledBuffer(Buffer.DataType dataType, int length, boolean isCompressed)NetworkBuffer(org.apache.flink.core.memory.MemorySegment memorySegment, BufferRecycler recycler, Buffer.DataType dataType)Creates a new buffer instance backed by the given memorySegment with 0 for the readerIndex and writerIndex.NetworkBuffer(org.apache.flink.core.memory.MemorySegment memorySegment, BufferRecycler recycler, Buffer.DataType dataType, boolean isCompressed, int size)Creates a new buffer instance backed by the given memorySegment with 0 for the readerIndex and size as writerIndex.NetworkBuffer(org.apache.flink.core.memory.MemorySegment memorySegment, BufferRecycler recycler, Buffer.DataType dataType, int size)Creates a new buffer instance backed by the given memorySegment with 0 for the readerIndex and size as writerIndex. -
Uses of Buffer.DataType in org.apache.flink.runtime.io.network.partition
Methods in org.apache.flink.runtime.io.network.partition that return Buffer.DataType Modifier and Type Method Description Buffer.DataTypeResultSubpartition.BufferAndBacklog. getNextDataType()Methods in org.apache.flink.runtime.io.network.partition with parameters of type Buffer.DataType Modifier and Type Method Description booleanDataBuffer. append(ByteBuffer source, int targetSubpartition, Buffer.DataType dataType)Appends data of the specified subpartition to thisDataBufferand returns true if thisDataBufferis full.booleanHashBasedDataBuffer. append(ByteBuffer source, int targetSubpartition, Buffer.DataType dataType)Partial data of the target record can be written if thisHashBasedDataBufferis full.booleanSortBuffer. append(ByteBuffer source, int targetSubpartition, Buffer.DataType dataType)No partial record will be written to thisSortBasedDataBuffer, which means that either all data of target record will be written or nothing will be written.static ResultSubpartition.BufferAndBacklogResultSubpartition.BufferAndBacklog. fromBufferAndLookahead(Buffer current, Buffer.DataType nextDataType, int backlog, int sequenceNumber)Constructors in org.apache.flink.runtime.io.network.partition with parameters of type Buffer.DataType Constructor Description BufferAndBacklog(Buffer buffer, int buffersInBacklog, Buffer.DataType nextDataType, int sequenceNumber) -
Uses of Buffer.DataType in org.apache.flink.runtime.io.network.partition.consumer
Constructors in org.apache.flink.runtime.io.network.partition.consumer with parameters of type Buffer.DataType Constructor Description BufferAndAvailability(Buffer buffer, Buffer.DataType nextDataType, int buffersInBacklog, int sequenceNumber) -
Uses of Buffer.DataType in org.apache.flink.runtime.io.network.partition.hybrid.tiered.storage
Methods in org.apache.flink.runtime.io.network.partition.hybrid.tiered.storage with parameters of type Buffer.DataType Modifier and Type Method Description voidHashSubpartitionBufferAccumulator. append(ByteBuffer record, Buffer.DataType dataType)voidBufferAccumulator. receive(ByteBuffer record, TieredStorageSubpartitionId subpartitionId, Buffer.DataType dataType, boolean isBroadcast)Receives the records from tiered store producer, these records will be accumulated and transformed into finished buffers.voidHashBufferAccumulator. receive(ByteBuffer record, TieredStorageSubpartitionId subpartitionId, Buffer.DataType dataType, boolean isBroadcast)voidSortBufferAccumulator. receive(ByteBuffer record, TieredStorageSubpartitionId subpartitionId, Buffer.DataType dataType, boolean isBroadcast)voidTieredStorageProducerClient. write(ByteBuffer record, TieredStorageSubpartitionId subpartitionId, Buffer.DataType dataType, boolean isBroadcast)Write records to the producer client.
-