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 ReleasesSubscriptions update instantly as authorization rules change.
Request-response messaging and the client control API now work seamlessly across a cluster.
Use topic views to stream topics from remote servers or create time-delayed feeds.
Plus redesigned management console, JavaScript shared web workers, and much 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/6.5.2/js/diffusion-6.5.2.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.
Apple
Android
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>6.5.2</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:6.5.2'
.NET
dotnet add package Diffusion.Client
C