Skip to main content

Class: DoUpdate

coresdk.workflow_activation.DoUpdate

Lang is requested to invoke an update handler on the workflow. Lang should invoke the update validator first (if requested). If it accepts the update, immediately invoke the update handler. Lang must reply to the activation containing this job with an UpdateResponse.

Implements

Constructors

constructor

new DoUpdate(properties?): DoUpdate

Constructs a new DoUpdate.

Parameters

NameTypeDescription
properties?IDoUpdateProperties to set

Returns

DoUpdate

Properties

headers

headers: Object

Headers attached to the update

Index signature

▪ [k: string]: IPayload

Implementation of

IDoUpdate.headers


id

id: string

A workflow-unique identifier for this update

Implementation of

IDoUpdate.id


input

input: IPayload[]

The input to the update

Implementation of

IDoUpdate.input


meta

Optional meta: null | IMeta

Remaining metadata associated with the update. The update_id field is stripped from here and moved to id, since it is guaranteed to be present.

Implementation of

IDoUpdate.meta


name

name: string

The name of the update handler

Implementation of

IDoUpdate.name


protocolInstanceId

protocolInstanceId: string

The protocol message instance ID - this is used to uniquely track the ID server side and internally.

Implementation of

IDoUpdate.protocolInstanceId


runValidator

runValidator: boolean

If set true, lang must run the update's validator before running the handler. This will be set false during replay, since validation is not re-run during replay.

Implementation of

IDoUpdate.runValidator

Methods

toJSON

toJSON(): Object

Converts this DoUpdate to JSON.

Returns

Object

JSON object


create

create(properties?): DoUpdate

Creates a new DoUpdate instance using the specified properties.

Parameters

NameTypeDescription
properties?IDoUpdateProperties to set

Returns

DoUpdate

DoUpdate instance


decode

decode(reader, length?): DoUpdate

Decodes a DoUpdate message from the specified reader or buffer.

Parameters

NameTypeDescription
readerUint8Array | ReaderReader or buffer to decode from
length?numberMessage length if known beforehand

Returns

DoUpdate

DoUpdate

Throws

If the payload is not a reader or valid buffer

Throws

If required fields are missing


decodeDelimited

decodeDelimited(reader): DoUpdate

Decodes a DoUpdate message from the specified reader or buffer, length delimited.

Parameters

NameTypeDescription
readerUint8Array | ReaderReader or buffer to decode from

Returns

DoUpdate

DoUpdate

Throws

If the payload is not a reader or valid buffer

Throws

If required fields are missing


encode

encode(message, writer?): Writer

Encodes the specified DoUpdate message. Does not implicitly coresdk.workflow_activation.DoUpdate.verify|verify messages.

Parameters

NameTypeDescription
messageIDoUpdateDoUpdate message or plain object to encode
writer?WriterWriter to encode to

Returns

Writer

Writer


encodeDelimited

encodeDelimited(message, writer?): Writer

Encodes the specified DoUpdate message, length delimited. Does not implicitly coresdk.workflow_activation.DoUpdate.verify|verify messages.

Parameters

NameTypeDescription
messageIDoUpdateDoUpdate message or plain object to encode
writer?WriterWriter to encode to

Returns

Writer

Writer


fromObject

fromObject(object): DoUpdate

Creates a DoUpdate message from a plain object. Also converts values to their respective internal types.

Parameters

NameTypeDescription
objectObjectPlain object

Returns

DoUpdate

DoUpdate


getTypeUrl

getTypeUrl(typeUrlPrefix?): string

Gets the default type url for DoUpdate

Parameters

NameTypeDescription
typeUrlPrefix?stringyour custom typeUrlPrefix(default "type.googleapis.com")

Returns

string

The default type url


toObject

toObject(message, options?): Object

Creates a plain object from a DoUpdate message. Also converts values to other types if specified.

Parameters

NameTypeDescription
messageDoUpdateDoUpdate
options?IConversionOptionsConversion options

Returns

Object

Plain object