Abstract method that should take two objects, one of input values and one of output values, and return a Promise that resolves when the context has been saved. The implementation of this method should save the context based on the provided input and output values.
saveContext(inputValues: InputValues, outputValues: OutputValues): Promise<void>| Name | Type | Description |
|---|---|---|
inputValues* | InputValues | An object of input values. |
outputValues* | OutputValues | An object of output values. |