blob: a06c768706992852e01f3907961a7dc0204dd8c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
### The `loopback` backend
This backend allows the user to create logical mapping channels, for example to exchange triggering
channels easier later. All events that are input are immediately output again on the same channel.
#### Global configuration
All global configuration is ignored.
#### Instance configuration
All instance configuration is ignored
#### Channel specification
A channel may have any string for a name.
Example mapping:
```
loop.foo < loop.bar123
```
#### Known bugs / problems
It is possible (and very easy) to configure loops using this backend. Triggering a loop
will create a deadlock, preventing any other backends from generating events.
Be careful with bidirectional channel mappings, as any input will be immediately
output to the same channel again.
|