transferum
Preparing search index...
AsyncIOFlowInterface
Interface AsyncIOFlowInterface<TInput, TOutput>
Asynchronous bidirectional flow — combines async read and write.
interface
AsyncIOFlowInterface
<
TInput
,
TOutput
>
{
read
()
:
Promise
<
TOutput
|
undefined
>
;
write
(
data
:
TInput
)
:
Promise
<
void
>
;
}
Type Parameters
TInput
TOutput
Hierarchy (
View Summary
)
AsyncInputFlowInterface
<
TInput
>
AsyncOutputFlowInterface
<
TOutput
>
AsyncIOFlowInterface
AsyncStorageInterface
Index
Methods
read
write
Methods
read
read
()
:
Promise
<
TOutput
|
undefined
>
Returns
Promise
<
TOutput
|
undefined
>
write
write
(
data
:
TInput
)
:
Promise
<
void
>
Parameters
data
:
TInput
Returns
Promise
<
void
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Methods
read
write
transferum
Loading...
Asynchronous bidirectional flow — combines async read and write.