Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hivemq/hivemq-extension-sdk
Open source Extension SDK for the HiveMQ Enterprise MQTT broker that you can use to extend the broker with custom functionality and integrate the broker with other external systems
https://github.com/hivemq/hivemq-extension-sdk
extensions hivemq java mqtt mqtt-library mqtt-protocol mqtt5 open-source plugins sdk
Last synced: 9 days ago
JSON representation
Open source Extension SDK for the HiveMQ Enterprise MQTT broker that you can use to extend the broker with custom functionality and integrate the broker with other external systems
- Host: GitHub
- URL: https://github.com/hivemq/hivemq-extension-sdk
- Owner: hivemq
- License: apache-2.0
- Created: 2018-12-10T17:07:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-11T11:26:30.000Z (17 days ago)
- Last Synced: 2024-12-11T11:40:53.639Z (17 days ago)
- Topics: extensions, hivemq, java, mqtt, mqtt-library, mqtt-protocol, mqtt5, open-source, plugins, sdk
- Language: Java
- Homepage: http://www.hivemq.com
- Size: 982 KB
- Stars: 22
- Watchers: 17
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.adoc
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
:hivemq-github: https://github.com/hivemq
:hivemq-website: http://www.hivemq.com
:hivemq-community-forum: https://community.hivemq.com/
:hivemq-extensions-docu: http://www.hivemq.com/docs/latest/extensions/
:hivemq-marketplace: http://www.hivemq.com/extensions/= HiveMQ Extension SDK
image:https://maven-badges.herokuapp.com/maven-central/com.hivemq/hivemq-extension-sdk/badge.svg?style=for-the-badge["Maven Central",link="https://maven-badges.herokuapp.com/maven-central/com.hivemq/hivemq-extension-sdk"]
image:https://javadoc.io/badge2/com.hivemq/hivemq-extension-sdk/javadoc.svg?style=for-the-badge["javadoc",link=https://javadoc.io/doc/com.hivemq/hivemq-extension-sdk]The enterprise MQTT broker HiveMQ offers this free, open source extension SDK.
The HiveMQ extension framework provides an open API that allows developers to create custom extensions that suit their specific infrastructures.
Use our extension framework to extend HiveMQ with custom business logic or to integrate virtually any system into HiveMQ.The HiveMQ extension framework can be used to add many different types of functionality:
* Write messages to a database,
* integrate other services,
* collect statistics,
* add fine-grained security,
* and much more.Resources:
* Web Site: {hivemq-website}
* Documentation: {hivemq-extensions-docu}
* Community Forum: {hivemq-community-forum}
* Contribution Guidelines: link:CONTRIBUTING.md[Contributing.adoc]
* License: The source files in this repository are made available under the link:LICENSE[Apache License Version 2.0].== Using the SDK
The HiveMQ extension SDK is available in Maven central, so no special configuration is needed.
To use the SDK, add the following dependency to your Maven project:[source,xml]
----com.hivemq
hivemq-extension-sdk
4.35.0----
== Extension Development Documentation
Extension development for HiveMQ is as easy as writing a Java main method once you grasp the core concepts.
Please visit the extensive {hivemq-extensions-docu}[HiveMQ extension developer documentation].
It covers the core concepts and shows how to set up your development environment.== Example Extensions
You can find many example extensions by browsing the {hivemq-github}[HiveMQ GitHub space].
Check out the {hivemq-marketplace}[HiveMQ Marketplace] for officially supported extensions.
== Need Help?
If you need help with custom HiveMQ extensions please contact [email protected].
== Contributing
If you want to contribute to the HiveMQ Extension SDK, see the link:CONTRIBUTING.md[contribution guidelines].
== License
The HiveMQ Extension SDK is licensed under the `APACHE LICENSE, VERSION 2.0`.
A copy of the license can be found link:LICENSE[here].