Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "sendInvalidate" request (#1367)
* parent 603fa9c author Sergey <sergey.bobko@intel.com> 1667223527 -0700 committer Sergey Bobko <sergey.bobko@intel.com> 1680535841 +0000 Add "sendInvalidate" request This PR adds support for OpenDebugAD7 to handle `sendInvalidate` requests which will respond if it successfully fired an InvalidatedEvent to the UI. Here is the schema: ```json "SendInvalidateRequest": { "allOf": [ { "$ref": "#/definitions/Request" }, { "type": "object", "properties": { "areas": { "type": "array", "description": "Set of logical areas that got invalidated. This property has a hint characteristic: a client can only be expected to make a 'best effort' in honoring the areas but there are no guarantees. If this property is missing, empty, or if values are not understood, the client should assume a single value `all`.", "items": { "$ref": "#/definitions/InvalidatedAreas" } }, "threadId": { "type": "int", }, "stackFrameId": { "type": "int", }, }, "required": [ "areas" ] } ] }, ``` Co-authored-by: Andrew Wang <waan@microsoft.com>
- Loading branch information