Skip to content

Commit

Permalink
feat(schema): add intra process comms field to component schema (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
domire8 authored Dec 19, 2024
1 parent 3ed3909 commit f6ed8a3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions schemas/applications/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ Release Versions:
- [1-1-0](#1-1-0)
- [1-0-0](#1-0-0)

## Upcoming changes

- feat: add intra process comms field to component schema (#192)

## 2-0-2

This patch includes application events under the graph trigger button events, giving users the option to stop the
Expand Down
6 changes: 6 additions & 0 deletions schemas/applications/schema/components.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@
}
}
},
"intra_process_communications": {
"title": "Use Intra-Process Communications",
"description": "If true, publishers and subscribers within the same process will enable intra-process communication which can avoid (de)serialization and unnecessary copies of messages, achieving lower latencies and CPU load in some cases",
"default": true,
"type": "boolean"
},
"events": {
"title": "Component Events",
"description": "Component event sources that can trigger events",
Expand Down

0 comments on commit f6ed8a3

Please sign in to comment.