@numaproj/numaflow-js - v0.0.0-alpha.4
    Preparing search index...

    Interface Message

    Output message for batch map operations. Represents a single output message in a batch response.

    interface Message {
        keys?: string[];
        tags?: string[];
        value: Buffer;
    }
    Index

    Properties

    Properties

    keys?: string[]

    Keys are a collection of strings which will be passed on to the next vertex. Can be an empty collection or undefined.

    tags?: string[]
    value: Buffer

    The message payload passed to the next vertex.