OkOrUnhandledResponse as Promise
Adds the given list of sequence commands at the end of the sequence
list of SequenceCommand to add in the sequence of sequencer
OkOrUnhandledResponse as Promise
Adds a breakpoint at the command of the given id in the sequence
runId of the command where breakpoint is to be added
GenericResponse as Promise
Deletes the command of the given id in the sequence
runId of the command which is to be deleted
GenericResponse as Promise
Sends command to the sequencer to call the diagnostic mode handler of the sequencer's script
time at which the diagnostic mode will take effect
String to support diagnostic data mode
DiagnosticModeResponse as Promise
Returns the current state of the sequencer (Idle, Loaded, Offline, Running, Processing)
SequencerState
sends command to the sequencer to go in Offline state if it is in Online state
GoOfflineResponse as Promise
sends command to the sequencer to go in Online state if it is in Offline state
GoOnlineResponse as Promise
Inserts the given list of sequence commands after the command of given id in the sequence
runId of command after which the given list of commands is to be inserted
list of SequenceCommand to be inserted
GenericResponse as Promise
Checks if sequencer is in Idle state
boolean as Promise
Checks if sequencer is in Online(any state except Offline) state
boolean as Promise
Loads the given sequence to the sequencer
a sequence to load in the sequencer
OkOrUnhandledResponse as Promise
Sends command to the sequencer to call the operations mode handler of the sequencer's script
OperationsModeResponse as Promise
Pauses the sequence
PauseResponse as Promise
Prepends the given list of sequence commands in the sequence
list of SequenceCommand to prepend in the sequence of sequencer
OkOrUnhandledResponse as Promise
Queries the response of sequence of the given runId and returns the immediate SubmitResponse
runId of the sequence
SubmitResponse as Promise
Queries the response of the sequence of given id and returns the final SubmitResponse If sequence is not finished it waits till the given timeout
runId of the sequence
timeout within which result is expected.
SubmitResponse as Promise
Removes a breakpoint from the command of the given id in the sequence
runId of command where breakpoint is
GenericResponse as Promise
Replaces the command of the given id with the given list of sequence commands in the sequence
runId of command which is to be replaced
list of SequenceCommand to replace with
GenericResponse as Promise
Resets the sequence by discarding all the pending steps of the sequence
OkOrUnhandledResponse as Promise
Resumes the paused sequence
OkOrUnhandledResponse as Promise
Runs the loaded sequence
SubmitResponse as Promise
Discards all the pending steps of the sequence and call the stop handler of the sequencer's script
OkOrUnhandledResponse as Promise
Submit the given sequence to the sequencer and returns the immediate SubmitResponse.
sequence to run on the sequencer
SubmitResponse as Promise
Submit the given sequence to the sequencer and waits until sequence execution completed and returns the final SubmitResponse
sequence to run on the sequencer
timeout within which result is expected.
SubmitResponse as Promise
Subscribes to the changes in state of sequencer which includes SequencerState (i.e Idle, Loaded, etc) and current StepList. The callback will be called with new SequencerStateResponse on state change and returns a subscription to unsubscribe.
Subscription
Subscribes to the changes in state of sequencer which includes SequencerState (i.e Idle, Loaded, etc) and current StepList. The callback will be called with new SequencerStateResponse on state change and returns a subscription to unsubscribe.
the function which gets called on each state change
the function which gets called on each state change
a optional error callback which gets called on receiving error. it can be Parsing error or a Runtime error [for ex. Gateway exception]
a optional error callback which gets called on receiving error. it can be Parsing error or a Runtime error [for ex. Gateway exception]
a optional close callback which gets called when the connection is closed.
a optional close callback which gets called when the connection is closed.
Subscription
Generated using TypeDoc
Discards all the pending steps of the sequence and call the abort handler of the sequencer's script