mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 06:50:18 +00:00
8203666e58
* fix web url Signed-off-by: Musilah <nataleigh.nk@gmail.com> * add new readmes Signed-off-by: Musilah <nataleigh.nk@gmail.com> * add other services Signed-off-by: Musilah <nataleigh.nk@gmail.com> * fix docker link Signed-off-by: Musilah <nataleigh.nk@gmail.com> * fix reports examples Signed-off-by: Musilah <nataleigh.nk@gmail.com> * revert go.sum change Signed-off-by: Musilah <nataleigh.nk@gmail.com> --------- Signed-off-by: Musilah <nataleigh.nk@gmail.com>
19 lines
942 B
Markdown
19 lines
942 B
Markdown
# Consumers
|
|
|
|
Consumers provide an abstraction of various `SuperMQ consumers`.
|
|
SuperMQ consumer is a generic service that can handle received messages - consume them.
|
|
The message is not necessarily a SuperMQ message - before consuming, SuperMQ message can
|
|
be transformed into any valid format that specific consumer can understand. For example,
|
|
writers are consumers that can take a SenML or JSON message and store it.
|
|
|
|
Consumers are optional services and are treated as plugins. In order to
|
|
run consumer services, core services must be up and running.
|
|
|
|
For an in-depth explanation of the usage of `consumers`, as well as thorough
|
|
understanding of SuperMQ, please check out the [official documentation][doc].
|
|
|
|
For more information about service capabilities and its usage, please check out
|
|
the [API documentation](https://docs.api.supermq.absmach.eu/?urls.primaryName=consumers-notifiers-openapi.yaml).
|
|
|
|
[doc]: https://docs.supermq.absmach.eu
|