Echo Endpoint Plugin
Echo protocol plugin simply “echoes” any message given. It’s intended for testing purposes.
Configuration
The following configuration can be set:
| Setting | Type | Default | Description |
|---|---|---|---|
| Delay | duration | 0s | Delay before answer is sent |
Example: Delay Answers by 100ms
We can use either duration type annotation or specify number of seconds directly (i.e., as double).
@Echo {
Delay 0.1
}
Outgoing Message
Anything given in outgoing message is used for reply.
Example
This is simplest message sending just one piece of data.
Message >Echo {
Data Test
}
Incoming Message
After a delay, incoming message will be “received” with the same properties as used in its outgoing version.
Example
Received equivalent to the message above
Message <Echo {
Data Test
}