Uses of Enum
org.apache.flink.runtime.io.network.buffer.Buffer.DataType
Packages that use Buffer.DataType
Package
Description
-
Uses of Buffer.DataType in org.apache.flink.runtime.io.network.buffer
Fields in org.apache.flink.runtime.io.network.buffer declared as Buffer.DataTypeModifier and TypeFieldDescriptionprotected final Buffer.DataTypeAbstractCompositeBuffer.dataTypeMethods in org.apache.flink.runtime.io.network.buffer that return Buffer.DataTypeModifier and TypeMethodDescriptionAbstractCompositeBuffer.getDataType()static Buffer.DataTypeBuffer.DataType.getDataType(AbstractEvent event, boolean hasPriority) Buffer.getDataType()Gets the type of data this buffer represents.BufferBuilder.getDataType()Gets the data type of the internal buffer.BufferConsumer.getDataType()BufferHeader.getDataType()FileRegionBuffer.getDataType()NetworkBuffer.getDataType()ReadOnlySlicedNetworkBuffer.getDataType()static Buffer.DataTypeReturns 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.DataTypeModifier and TypeMethodDescriptionvoidAbstractCompositeBuffer.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.DataTypeModifierConstructorDescriptionprotectedAbstractCompositeBuffer(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.DataTypeMethods in org.apache.flink.runtime.io.network.partition with parameters of type Buffer.DataTypeModifier and TypeMethodDescriptionbooleanDataBuffer.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.ResultSubpartition.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.DataTypeModifierConstructorDescriptionBufferAndBacklog(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.DataTypeModifierConstructorDescriptionBufferAndAvailability(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.DataTypeModifier and TypeMethodDescriptionvoidHashSubpartitionBufferAccumulator.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.