@runloop/agent-axon-client
    Preparing search index...

    Type Alias Stream

    Stream interface for ACP connections.

    This type powers the bidirectional communication for an ACP connection, providing readable and writable streams of messages.

    The most common way to create a Stream is using ndJsonStream.

    type Stream = {
        readable: ReadableStream<AnyMessage>;
        writable: WritableStream<AnyMessage>;
    }
    Index

    ACP Protocol

    ACP Protocol

    readable: ReadableStream<AnyMessage>
    writable: WritableStream<AnyMessage>