Uses of Class
org.apache.arrow.vector.ipc.ReadChannel
Packages that use ReadChannel
-
Uses of ReadChannel in org.apache.arrow.vector.ipc
Subclasses of ReadChannel in org.apache.arrow.vector.ipcModifier and TypeClassDescriptionclassAnReadChannelthat supports seeking to a random position. -
Uses of ReadChannel in org.apache.arrow.vector.ipc.message
Fields in org.apache.arrow.vector.ipc.message declared as ReadChannelMethods in org.apache.arrow.vector.ipc.message with parameters of type ReadChannelModifier and TypeMethodDescriptionstatic ArrowDictionaryBatchMessageSerializer.deserializeDictionaryBatch(ReadChannel in, BufferAllocator allocator) Deserializes an ArrowDictionaryBatch read from the input channel.static ArrowDictionaryBatchMessageSerializer.deserializeDictionaryBatch(ReadChannel in, ArrowBlock block, BufferAllocator alloc) Deserializes a DictionaryBatch knowing the size of the entire message up front.static ArrowMessageMessageSerializer.deserializeMessageBatch(ReadChannel in, BufferAllocator alloc) Deserialize a message that is either an ArrowDictionaryBatch or ArrowRecordBatch.static ArrowRecordBatchMessageSerializer.deserializeRecordBatch(ReadChannel in, BufferAllocator allocator) Deserializes an ArrowRecordBatch read from the input channel.static ArrowRecordBatchMessageSerializer.deserializeRecordBatch(ReadChannel in, ArrowBlock block, BufferAllocator alloc) Deserializes an ArrowRecordBatch knowing the size of the entire message up front.static SchemaMessageSerializer.deserializeSchema(ReadChannel in) Deserializes an Arrow Schema read from the input channel.static MessageMetadataResultMessageSerializer.readMessage(ReadChannel in) Read a Message from the input channel and return a MessageMetadataResult that contains the Message metadata, buffer containing the serialized Message metadata as read, and length of the Message in bytes.static ArrowBufMessageSerializer.readMessageBody(ReadChannel in, long bodyLength, BufferAllocator allocator) Read a Message body from the in channel into an ArrowBuf.Constructors in org.apache.arrow.vector.ipc.message with parameters of type ReadChannelModifierConstructorDescriptionMessageChannelReader(ReadChannel in, BufferAllocator allocator) Construct a MessageReader to read streaming messages from an existing ReadChannel.