接口 ChannelProtocol<ValueType, UpdateType, CheckpointType>

接口 ChannelProtocol<ValueType, UpdateType, CheckpointType> {
    UpdateType: UpdateType;
    ValueType: ValueType;
    lc_graph_name: string;
    checkpoint(): undefined | CheckpointType;
    fromCheckpoint(checkpoint?): this;
    get(): ValueType;
    update(values): void;
}

类型参数

  • ValueType = unknown
  • UpdateType = unknown
  • CheckpointType = unknown

属性

UpdateType: UpdateType
ValueType: ValueType
lc_graph_name: string

通道的名称。

方法

  • 返回通道当前状态的字符串表示形式。

    返回 undefined | CheckpointType

    抛出

    如果通道为空(尚未更新),或者不支持检查点。

  • 返回一个新的相同通道,可以选择从检查点初始化。可以被认为是从检查点“恢复”,检查点是通道状态的“快照”。

    参数

    返回 this

  • 返回通道的当前值。

    返回 ValueType

    抛出

    如果通道为空(尚未更新)。

  • 使用给定的更新序列更新通道的值。序列中更新的顺序是任意的。

    参数

    返回 void

    抛出

    如果更新序列无效。