Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christophersmith/summer-mqtt
A MQTT Client abstraction service for Spring Framework projects. Intended as a flexible and light alternate to using Spring Integration MQTT.
https://github.com/christophersmith/summer-mqtt
mqtt spring spring-framework summer-mqtt
Last synced: 3 months ago
JSON representation
A MQTT Client abstraction service for Spring Framework projects. Intended as a flexible and light alternate to using Spring Integration MQTT.
- Host: GitHub
- URL: https://github.com/christophersmith/summer-mqtt
- Owner: christophersmith
- License: apache-2.0
- Created: 2017-07-28T03:41:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-12T23:19:50.000Z (about 4 years ago)
- Last Synced: 2024-09-29T00:05:31.381Z (3 months ago)
- Topics: mqtt, spring, spring-framework, summer-mqtt
- Language: Java
- Homepage:
- Size: 103 KB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Summer MQTT
Summer MQTT is a MQTT Client abstraction service for Spring Framework projects, and is intended as a flexible and light alternate to using Spring Integration MQTT. The first iteration provides an implementation that uses the asynchronous Paho MQTT Client.
## Why Summer MQTT?
Summer MQTT came as a product of need in environments that had poor latency and connectivity. I found that while Spring Integration MQTT provided a clean pattern, I needed more functionality than available without modifying (or heavily customizing) Spring Integration.
So what's the difference?
- Smaller distribution size - both the Core and Paho wrappers weigh in at 33 KB combined. This was essential for mass distribution to thousands of nodes with limited bandwidth
- In-bound and Out-bound connections aren't required to be separated. You can have one MQTT Client connection that handles both Subscribing and Publishing. This was crucial in high latency and poor connectivity environments where I found that synchronizing the the up-state of the In-bound and Out-bound channel adapters to be problematic.
- Better control of the state of the Client - you can start and stop the service at any time without having to re-create the Bean.
- Includes an optional Connection State Message Publisher that will publish State messages when the MQTT Client connects or disconnects (gracefully).## Project Status
The latest release:
```
com.github.christophersmith
summer-mqtt-paho
1.0.0```
[Release Notes](RELEASE_NOTES.md)
## Getting Started
Check out the samples provided at: [https://github.com/christophersmith/summer-mqtt-samples](https://github.com/christophersmith/summer-mqtt-samples)
## Javadoc
summer-mqtt-core [![Javadocs](https://www.javadoc.io/badge/com.github.christophersmith/summer-mqtt-core.svg)](https://www.javadoc.io/doc/com.github.christophersmith/summer-mqtt-core)
summer-mqtt-paho [![Javadocs](https://www.javadoc.io/badge/com.github.christophersmith/summer-mqtt-paho.svg)](https://www.javadoc.io/doc/com.github.christophersmith/summer-mqtt-paho)