Make sure you have a supported version of Java and then run the Diffusion installer.
Requires JDK 8 (1.8.0_131-b11 or higher)
or a Java
11
JDK (11.0.3 GA or higher, Hotspot JVM)
See Quick Start Guide for full instructions.
You can use the RPM file to install the Diffusion server on Linux systems that have Red Hat Package Manager installed.
Download RPMGet previous release versions of Diffusion
Other ReleasesIntegrating Diffusion with external data sources is easier than ever. Now you can control and monitor these adapters right from the Diffusion monitoring console, and Kafka importing is more flexible.
Diffusion’s data wrangling capabilities continue to expand with new options. You can now preserve topics created based on topic values, and customize how topic views deal with values that contain a / character.
The JavaScript client is now available as a collection of modular bundles, enabling you to minimize application size and loading times.
This release also includes management console SSO, visualization of Diffusion clusters, plus all the new features that were added in Preview 1 and Preview 2: MQTT support, a Python SDK, improvements to topic views and time series, and more.
Read What's New in the manual for more details
Diffusion Support and Upgrade PolicyBy downloading any of these SDKs you agree to abide by our Terms and Conditions
JavaScript
<script src="https://download.pushtechnology.com/clients/Cloud/js/diffusion-Cloud.js"></script>
Install with npm
npm install diffusion
Include in your Node.js application
var diffusion = require('diffusion');
If you got the client library using npm, the TypeScript definition file is included.
You can also download the TypeScript file from the following URL:
Include the TypeScript definition file in your IDE project to use the TypeScript
definitions
when developing for a client.
To enable optional zlib message compression in browser applications, you can either:
If you are using Node.js, you don't need to do anything to enable compression. Node.js provides zlib as a standard module.
See the API documentation for how to use web workers.
https://download.pushtechnology.com/clients/Cloud/js/diffusion-core-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-core-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-client-control-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-messages-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-topic-control-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-topic-update-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-topic-notifications-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-time-series-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-security-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-session-lock-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-remote-servers-Cloud.js https://download.pushtechnology.com/clients/Cloud/js/modular/diffusion-feature-topic-views-Cloud.js
See the API documentation for how to dynamically load modules.
Apple
Android
apply plugin: 'com.android.application' android { compileSdkVersion 27 defaultConfig { multiDexEnabled true applicationId "com.pushtechnology.android.example" minSdkVersion 19 targetSdkVersion 27 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { coreLibraryDesugaringEnabled true sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } repositories { maven { url "https://download.pushtechnology.com/maven/" } } dependencies { coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.9' implementation 'org.slf4j:slf4j-api:1.7.21' implementation 'com.pushtechnology.diffusion:diffusion-android-client:Cloud' }
Java
Add the Push Technology public repository to your pom.xml file
<repositories> <repository> <id>push-repository</id> <url>https://download.pushtechnology.com/maven/</url> </repository> </repositories>
Declare the following dependency in your pom.xml file
<dependency> <groupId>com.pushtechnology.diffusion</groupId> <artifactId>diffusion-client</artifactId> <version>Cloud</version> </dependency>
Add the Push Technology public repository to your build.gradle file
repositories { maven { url "https://download.pushtechnology.com/maven/" } }
Declare the following dependency in your build.gradle file
compile 'com.pushtechnology.diffusion:diffusion-client:Cloud'
.NET
dotnet add package Diffusion.Client
C
Python
$ pip install diffusion==Cloud