kkrpc
Preparing search index...
@kunkun/kkrpc
IoInterface
Interface IoInterface
Theoretically, any bidirectional channel with read and write can be used to build a RPC interface.
interface
IoInterface
{
name
:
string
;
read
()
:
Promise
<
null
|
string
|
Uint8Array
<
ArrayBufferLike
>
|
Buffer
<
ArrayBufferLike
>
,
>
;
write
(
data
:
string
)
:
Promise
<
void
>
;
}
Hierarchy (
View Summary
)
IoInterface
DestroyableIoInterface
Implemented by
BunIo
DenoIo
HTTPClientIO
HTTPServerIO
NodeIo
TauriShellStdio
Index
Properties
name
Methods
read
write
Properties
name
name
:
string
Methods
read
read
()
:
Promise
<
null
|
string
|
Uint8Array
<
ArrayBufferLike
>
|
Buffer
<
ArrayBufferLike
>
,
>
Returns
Promise
<
null
|
string
|
Uint8Array
<
ArrayBufferLike
>
|
Buffer
<
ArrayBufferLike
>
>
write
write
(
data
:
string
)
:
Promise
<
void
>
Parameters
data
:
string
Returns
Promise
<
void
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
name
Methods
read
write
kkrpc
Loading...
Theoretically, any bidirectional channel with read and write can be used to build a RPC interface.