class RemoteChannelRead
extends RemoteChannelBase
Re-export
import { RemoteChannelRead } from "https://deno.land/x/rimbu@1.1.0/channel/custom/index.ts";
Constructors
new
RemoteChannelRead(port: RemoteChannel.SimpleMessagePort, config: RemoteChannel.WriteConfig)Methods
asyncStream(): AsyncStream<T>
readable(): Channel.Read<T>
receive<RT>(options?: { signal?: AbortSignal | undefined; timeoutMs?: number | undefined; recover?: ((channelError: Channel.Error) => RT) | undefined; }): Promise<T | RT>
[Symbol.asyncIterator](): AsyncIterator<T>