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

    Interface SystemMetadata

    System-provided metadata attached to sink messages. Contains read-only system information organized by groups.

    interface SystemMetadata {
        getGroups(): string[];
        getKeys(group: string): string[];
        getValue(group: string, key: string): Buffer;
    }
    Index

    Methods

    • Get all group names in the metadata.

      Returns string[]

      Array of group names

    • Get all keys within a specific group.

      Parameters

      • group: string

        The group name

      Returns string[]

      Array of key names in the group

    • Get the value for a specific key within a group.

      Parameters

      • group: string

        The group name

      • key: string

        The key name

      Returns Buffer

      The value as a Buffer