| Package | Description |
|---|---|
| org.bytedeco.arrow | |
| org.bytedeco.arrow_dataset | |
| org.bytedeco.arrow_flight | |
| org.bytedeco.arrow.global |
| Modifier and Type | Method and Description |
|---|---|
IpcWriteOptions |
IpcWriteOptions.alignment(int setter) |
IpcWriteOptions |
IpcWriteOptions.allow_64bit(boolean setter) |
IpcWriteOptions |
IpcWriteOptions.codec(Codec setter) |
static IpcWriteOptions |
IpcWriteOptions.Defaults() |
IpcWriteOptions |
IpcWriteOptions.emit_dictionary_deltas(boolean setter) |
IpcWriteOptions |
IpcWriteOptions.getPointer(long i) |
IpcWriteOptions |
IpcWriteOptions.max_recursion_depth(int setter) |
IpcWriteOptions |
IpcWriteOptions.memory_pool(MemoryPool setter) |
IpcWriteOptions |
IpcWriteOptions.metadata_version(arrow.MetadataVersion setter) |
IpcWriteOptions |
IpcWriteOptions.position(long position) |
IpcWriteOptions |
IpcWriteOptions.use_threads(boolean setter) |
IpcWriteOptions |
IpcWriteOptions.write_legacy_ipc_format(boolean setter) |
| Modifier and Type | Method and Description |
|---|---|
Status |
Message.SerializeTo(OutputStream file,
IpcWriteOptions options,
long[] output_length) |
Status |
Message.SerializeTo(OutputStream file,
IpcWriteOptions options,
LongBuffer output_length) |
Status |
Message.SerializeTo(OutputStream file,
IpcWriteOptions options,
LongPointer output_length)
\brief Write length-prefixed metadata and body to output stream
|
| Modifier and Type | Method and Description |
|---|---|
IpcWriteOptions |
IpcFileWriteOptions.options()
Options passed to ipc::MakeFileWriter.
|
| Modifier and Type | Method and Description |
|---|---|
IpcFileWriteOptions |
IpcFileWriteOptions.options(IpcWriteOptions setter) |
| Modifier and Type | Method and Description |
|---|---|
IpcWriteOptions |
FlightCallOptions.write_options()
\brief IPC writer options, if applicable for the call.
|
| Modifier and Type | Method and Description |
|---|---|
Status |
MetadataRecordBatchWriter.Begin(Schema schema,
IpcWriteOptions options)
\brief Begin writing data with the given schema.
|
FlightCallOptions |
FlightCallOptions.write_options(IpcWriteOptions setter) |
| Constructor and Description |
|---|
RecordBatchStream(RecordBatchReader reader,
IpcWriteOptions options) |
| Modifier and Type | Method and Description |
|---|---|
static Status |
arrow.GetDictionaryPayload(long id,
Array dictionary,
IpcWriteOptions options,
IpcPayload payload)
\brief Compute IpcPayload for a dictionary
|
static Status |
arrow.GetDictionaryPayload(long id,
boolean is_delta,
Array dictionary,
IpcWriteOptions options,
IpcPayload payload)
\brief Compute IpcPayload for a dictionary
|
static long |
arrow.GetPayloadSize(IpcPayload payload,
IpcWriteOptions options)
\brief Compute the number of bytes needed to write an IPC payload
including metadata
|
static Status |
arrow.GetRecordBatchPayload(RecordBatch batch,
IpcWriteOptions options,
IpcPayload out)
\brief Compute IpcPayload for the given record batch
|
static Status |
arrow.GetRecordBatchSize(RecordBatch batch,
IpcWriteOptions options,
long[] size) |
static Status |
arrow.GetRecordBatchSize(RecordBatch batch,
IpcWriteOptions options,
LongBuffer size) |
static Status |
arrow.GetRecordBatchSize(RecordBatch batch,
IpcWriteOptions options,
LongPointer size)
\brief Compute the number of bytes needed to write a record batch including metadata
|
static Status |
arrow.GetSchemaPayload(Schema schema,
IpcWriteOptions options,
DictionaryFieldMapper mapper,
IpcPayload out)
\brief Compute IpcPayload for the given schema
|
static RecordBatchWriterSharedResult |
arrow.MakeFileWriter(OutputStream sink,
Schema schema,
IpcWriteOptions options,
KeyValueMetadata metadata)
Create a new IPC file writer from stream sink and schema
|
static IpcPayloadWriterResult |
arrow.MakePayloadFileWriter(OutputStream sink,
Schema schema,
IpcWriteOptions options,
KeyValueMetadata metadata)
Create a new IPC payload file writer from stream sink.
|
static IpcPayloadWriterResult |
arrow.MakePayloadStreamWriter(OutputStream sink,
IpcWriteOptions options)
Create a new IPC payload stream writer from stream sink.
|
static RecordBatchWriterSharedResult |
arrow.MakeStreamWriter(OutputStream sink,
Schema schema,
IpcWriteOptions options)
\defgroup record-batch-writer-factories Functions for creating RecordBatchWriter
instances
\{
|
static RecordBatchWriterSharedResult |
arrow.NewFileWriter(OutputStream sink,
Schema schema,
IpcWriteOptions options,
KeyValueMetadata metadata)
Deprecated.
|
static RecordBatchWriterSharedResult |
arrow.NewStreamWriter(OutputStream sink,
Schema schema,
IpcWriteOptions options)
Deprecated.
|
static RecordBatchWriterUniqueResult |
arrow.OpenRecordBatchWriter(IpcPayloadWriter sink,
Schema schema,
IpcWriteOptions options)
Create a new RecordBatchWriter from IpcPayloadWriter and schema.
|
static BufferResult |
arrow.SerializeRecordBatch(RecordBatch batch,
IpcWriteOptions options)
\brief Serialize record batch as encapsulated IPC message in a new buffer
|
static Status |
arrow.SerializeRecordBatch(RecordBatch batch,
IpcWriteOptions options,
OutputStream out)
\brief Write record batch to OutputStream
|
static Status |
arrow.WriteIpcPayload(IpcPayload payload,
IpcWriteOptions options,
OutputStream dst,
int[] metadata_length) |
static Status |
arrow.WriteIpcPayload(IpcPayload payload,
IpcWriteOptions options,
OutputStream dst,
IntBuffer metadata_length) |
static Status |
arrow.WriteIpcPayload(IpcPayload payload,
IpcWriteOptions options,
OutputStream dst,
IntPointer metadata_length)
\brief Write an IPC payload to the given stream.
|
static Status |
arrow.WriteRecordBatch(RecordBatch batch,
long buffer_start_offset,
OutputStream dst,
int[] metadata_length,
long[] body_length,
IpcWriteOptions options) |
static Status |
arrow.WriteRecordBatch(RecordBatch batch,
long buffer_start_offset,
OutputStream dst,
IntBuffer metadata_length,
LongBuffer body_length,
IpcWriteOptions options) |
static Status |
arrow.WriteRecordBatch(RecordBatch batch,
long buffer_start_offset,
OutputStream dst,
IntPointer metadata_length,
LongPointer body_length,
IpcWriteOptions options)
\brief Low-level API for writing a record batch (without schema)
to an OutputStream as encapsulated IPC message.
|
static Status |
arrow.WriteRecordBatchStream(RecordBatchVector batches,
IpcWriteOptions options,
OutputStream dst)
\brief Write multiple record batches to OutputStream, including schema
|
Copyright © 2021. All rights reserved.