正在準備搜尋索引...
搜尋索引尚不可用
Apache Arrow - v19.0.0
Apache Arrow
Arrow.dom
紀錄批次寫入器
類別 RecordBatchWriter<T>
類型參數
T
extends
TypeMap
=
any
層級結構
ReadableInterop
<
Uint8Array
>
紀錄批次寫入器
實作
Writable
<
RecordBatch
<
T
>
>
索引
建構子
constructor
存取器
closed
方法
[async
Iterator]
abort
close
finish
pipe
pipe
Through
pipe
To
reset
tee
toDOMStream
to
Node
Stream
to
String
to
Uint8
Array
write
write
All
throughDOM
through
Node
建構子
建構子
new
RecordBatchWriter
<
T
extends
TypeMap
=
any
>
(
options
?:
RecordBatchStreamWriterOptions
,
)
:
RecordBatchWriter
<
T
>
類型參數
T
extends
TypeMap
=
any
參數
選填
options
:
RecordBatchStreamWriterOptions
回傳
RecordBatchWriter
<
T
>
存取器
closed
get
closed
()
:
Promise
<
void
>
回傳
Promise
<
void
>
方法
[async
Iterator]
"[asyncIterator]"
()
:
AsyncByteQueue
回傳
AsyncByteQueue
abort
abort
(
reason
?:
any
)
:
void
參數
選填
reason
:
any
回傳
void
close
close
()
:
void
回傳
void
finish
finish
()
:
RecordBatchWriter
<
T
>
回傳
RecordBatchWriter
<
T
>
pipe
pipe
<
R
extends
WritableStream
>
(
writable
:
R
,
options
?:
{
end
?:
boolean
}
)
:
R
類型參數
R
extends
WritableStream
參數
writable
:
R
選填
options
:
{
end
?:
boolean
}
回傳
R
pipe
Through
pipeThrough
<
R
extends
ReadableStream
>
(
duplex
:
{
readable
:
R
;
writable
:
WritableStream
<
Uint8Array
>
}
,
options
?:
StreamPipeOptions
,
)
:
ReadableStream
類型參數
R
extends
ReadableStream
參數
duplex
:
{
readable
:
R
;
writable
:
WritableStream
<
Uint8Array
>
}
選填
options
:
StreamPipeOptions
回傳
ReadableStream
pipe
To
pipeTo
(
writable
:
WritableStream
<
Uint8Array
>
,
options
?:
StreamPipeOptions
,
)
:
Promise
<
void
>
參數
writable
:
WritableStream
<
Uint8Array
>
選填
options
:
StreamPipeOptions
回傳
Promise
<
void
>
reset
reset
(
sink
?:
WritableSink
<
ArrayBufferViewInput
>
,
schema
?:
null
|
Schema
<
T
>
,
)
:
RecordBatchWriter
<
T
>
參數
sink
:
WritableSink
<
ArrayBufferViewInput
>
= ...
schema
:
null
|
Schema
<
T
>
= null
回傳
RecordBatchWriter
<
T
>
tee
tee
()
:
[
ReadableStream
<
Uint8Array
>
,
ReadableStream
<
Uint8Array
>
]
回傳
[
ReadableStream
<
Uint8Array
>
,
ReadableStream
<
Uint8Array
>
]
toDOMStream
toDOMStream
(
options
?:
ReadableDOMStreamOptions
)
:
ReadableStream
<
Uint8Array
>
參數
選填
options
:
ReadableDOMStreamOptions
回傳
ReadableStream
<
Uint8Array
>
to
Node
Stream
toNodeStream
(
options
?:
ReadableOptions
)
:
Readable
參數
選填
options
:
ReadableOptions
回傳
Readable
to
String
toString
(
sync
:
true
)
:
string
回傳物件的字串表示形式。
參數
sync
:
true
回傳
string
toString
(
sync
?:
false
)
:
Promise
<
string
>
參數
選填
sync
:
false
回傳
Promise
<
string
>
to
Uint8
Array
toUint8Array
(
sync
:
true
)
:
Uint8Array
參數
sync
:
true
回傳
Uint8Array
toUint8Array
(
sync
?:
false
)
:
Promise
<
Uint8Array
>
參數
選填
sync
:
false
回傳
Promise
<
Uint8Array
>
write
write
(
payload
?:
null
|
RecordBatch
<
T
>
|
Table
<
T
>
|
Iterable
<
RecordBatch
<
T
>
>
,
)
:
void
參數
選填
payload
:
null
|
RecordBatch
<
T
>
|
Table
<
T
>
|
Iterable
<
RecordBatch
<
T
>
>
回傳
void
write
All
writeAll
(
input
:
Table
<
T
>
|
Iterable
<
RecordBatch
<
T
>
>
)
:
this
參數
input
:
Table
<
T
>
|
Iterable
<
RecordBatch
<
T
>
>
回傳
this
writeAll
(
input
:
AsyncIterable
<
RecordBatch
<
T
>
>
)
:
Promise
<
RecordBatchWriter
<
T
>
>
參數
input
:
AsyncIterable
<
RecordBatch
<
T
>
>
回傳
Promise
<
RecordBatchWriter
<
T
>
>
writeAll
(
input
:
PromiseLike
<
AsyncIterable
<
RecordBatch
<
T
>
>
>
,
)
:
Promise
<
RecordBatchWriter
<
T
>
>
參數
input
:
PromiseLike
<
AsyncIterable
<
RecordBatch
<
T
>
>
>
回傳
Promise
<
RecordBatchWriter
<
T
>
>
writeAll
(
input
:
PromiseLike
<
Table
<
T
>
|
Iterable
<
RecordBatch
<
T
>
>
>
,
)
:
Promise
<
RecordBatchWriter
<
T
>
>
參數
input
:
PromiseLike
<
Table
<
T
>
|
Iterable
<
RecordBatch
<
T
>
>
>
回傳
Promise
<
RecordBatchWriter
<
T
>
>
靜態
throughDOM
throughDOM
<
T
extends
TypeMap
>
(
writableStrategy
?:
QueuingStrategy
<
RecordBatch
<
T
>
>
&
{
autoDestroy
:
boolean
;
}
,
readableStrategy
?:
{
highWaterMark
?:
number
;
size
?:
any
}
,
)
:
{
readable
:
ReadableStream
<
Uint8Array
>
;
writable
:
WritableStream
<
RecordBatch
<
T
>
|
Table
<
T
>
>
;
}
類型參數
T
extends
TypeMap
參數
選填
writableStrategy
:
QueuingStrategy
<
RecordBatch
<
T
>
>
&
{
autoDestroy
:
boolean
}
選填
readableStrategy
:
{
highWaterMark
?:
number
;
size
?:
any
}
回傳
{
readable
:
ReadableStream
<
Uint8Array
>
;
writable
:
WritableStream
<
RecordBatch
<
T
>
|
Table
<
T
>
>
;
}
Nocollapse
靜態
through
Node
throughNode
(
options
?:
DuplexOptions
&
{
autoDestroy
:
boolean
}
)
:
Duplex
參數
選填
options
:
DuplexOptions
&
{
autoDestroy
:
boolean
}
回傳
Duplex
Nocollapse
設定
成員可見性
繼承自
主題
作業系統
淺色
深色
本頁面
建構子
constructor
存取器
closed
方法
[非同步迭代器]
中止
關閉
完成
管線
管線穿透
管線至
重設
分流
至 DOM 串流
至
Node
串流
至
字串
至
Uint8
陣列
寫入
全部
寫入
穿透 DOM
穿透
Node
Apache Arrow - v19.0.0
載入中...
回傳物件的字串表示形式。