You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, the `Sampling Interval` allows to sample the value on the server side with a higher frequency.
12
-
A detailed explenation of all settings is available in the [Reference](REFERENCE.md).
12
+
A detailed explanation of all settings is available in the [Reference](REFERENCE.md).
13
13
14
14
## Limits for number of active requests
15
15
@@ -28,7 +28,7 @@ The subscription node now has a "dynamic" mode which allows the path to be dynam
28
28
fixed at the time of deployment of the flow.
29
29
After setting the node to `dynamic`, the node gets an input connector which accepts the following `msg` to subscribe to a data layer path:
30
30
31
-
```JSON
31
+
```javascript
32
32
msg = {
33
33
"action":"subscribe",
34
34
"path":"<path to subscribe>"
@@ -37,7 +37,7 @@ msg = {
37
37
38
38
Or to unsubscribe from the current data layer path:
39
39
40
-
```JSON
40
+
```javascript
41
41
msg = {
42
42
"action":"unsubscribe"
43
43
}
@@ -48,10 +48,10 @@ msg = {
48
48
Using the dynamic subscription features it is now also possible to subscribe to more than a single ctrlX Data Layer path with a single Node-RED subscription node.
49
49
This can be done by passing an array of addresses for the `path`.
50
50
51
-
```JSON
51
+
```javascript
52
52
msg = {
53
53
"action":"subscribe",
54
-
"path": ["<path to subscribe>", "<path to subscribe>", "<path to subscribe>", ...]
54
+
"path": ["<path to subscribe>", "<path to subscribe>", "<path to subscribe>", "..."]
0 commit comments