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 ReleasesDynamic one-to-many mapping for tailored data delivery.
Deliver the most important data first in challenging conditions.
Use the JSON Patch standard to update complex data models efficiently in real time.
Plus replication and fan-out improvements, Open JDK and Java 11 support 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.4.10/js/diffusion-6.4.10.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.4.10</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.4.10'
.NET
dotnet add package Diffusion.Client
C