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

    Represents an output message from a source transform handler.

    // Create a message with modified event time
    const msg = new sourceTransform.Message(
    Buffer.from('transformed data'),
    new Date(),
    { keys: ['key1'], tags: ['output-1'] }
    );
    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    eventTime: Date

    Event time to assign to this message

    keys?: string[]

    Optional keys for routing

    tags?: string[]

    Optional tags for conditional forwarding

    Optional user metadata

    value: Buffer

    The message payload

    Methods