MetaInfo

This interface models the meta information associated with a meta flow:

export interface MetaInfo {
    transactionCount: number,
    status?: MetaStatus,
    lastError: any
}

Property

Description

transactionCount

Type: number

transaction count executed in the meta flow

status

Type: MetaStatus

The current status of the meta flow

lastError

Type: any

last error that was thrown to the meta flow

The possible values for MetaStatus are:

export enum MetaStatus {
    STARTING = 'STARTING',
    INIT = "INIT",
    RUNNING = "RUNNING",
    ERROR = "ERROR",
    IDLE = "IDLE",
    IDLE_ON_TRANSACTION = "IDLE_ON_TRANSACTION",
}

Last updated