FSharpx.Async


IOExtensions

Namespace: FSharpx.IO

Type extensions

Type extensionDescription
AsyncReadSeq(?bufferSize)
Signature: (bufferSize:int option) -> AsyncSeq<byte []>

Asynchronously reads the stream in chunks of a specified size and returns the result as an asynchronous sequence.

CompiledName: Stream.AsyncReadSeq

AsyncWriteSeq(input)
Signature: (input:AsyncSeq<byte []>) -> Async<unit>

Asynchronously writes all data specified by the given asynchronous sequence to the stream.

CompiledName: Stream.AsyncWriteSeq

Fork me on GitHub