Represnts a list of tasks to be performed by a switchboard oracle.

Implements

Properties

tasks: ITask[]

The chain of tasks to perform for this OracleJob.

weight: number

The weight to assign to this job's result when aggregating multiple job results. A higher weight means this job's result will have more influence on the final aggregated value. This value must be greater than or equal to 0.

Methods

  • Converts this OracleJob to JSON.

    Returns { [k: string]: any }

    JSON object

  • Converts an OracleJob instance to a stringified yaml object.

    Returns string

    stringified yaml object

  • Parameters

    Returns OracleJob

  • Decodes an OracleJob message from the specified reader or buffer.

    Parameters

    • reader: Uint8Array<ArrayBufferLike> | Reader

      Reader or buffer to decode from

    • Optionallength: number

      Message length if known beforehand

    Returns OracleJob

    OracleJob

    If the payload is not a reader or valid buffer

    If required fields are missing

  • Decodes an OracleJob message from the specified reader or buffer, length delimited.

    Parameters

    • reader: Uint8Array<ArrayBufferLike> | Reader

      Reader or buffer to decode from

    Returns OracleJob

    OracleJob

    If the payload is not a reader or valid buffer

    If required fields are missing

  • Encodes the specified OracleJob message. Does not implicitly verify messages.

    Parameters

    • message: IOracleJob

      OracleJob message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Encodes the specified OracleJob message, length delimited. Does not implicitly verify messages.

    Parameters

    • message: IOracleJob

      OracleJob message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Creates an OracleJob message from a plain object. Also converts values to their respective internal types.

    Parameters

    • object: { [k: string]: any }

      Plain object

    Returns OracleJob

    OracleJob

  • Creates a new OracleJob instance from a stringified yaml object.

    Parameters

    • OptionalyamlString: string

      stringified yaml object

    Returns OracleJob

    OracleJob instance

  • Gets the default type url for OracleJob

    Parameters

    Returns string

    The default type url

  • Creates a plain object from an OracleJob message. Also converts values to other types if specified.

    Parameters

    • message: OracleJob

      OracleJob

    • Optionaloptions: IConversionOptions

      Conversion options

    Returns { [k: string]: any }

    Plain object

  • Verifies an OracleJob message.

    Parameters

    • message: { [k: string]: any }

      Plain object to verify

    Returns string

    null if valid, otherwise the reason why it is not