The Diffusion JAR file contains all the resources for the Diffusion server. Install this JAR using the installer.
Requires JDK 8 (1.8.0_131-b11 or higher)
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 ReleasesRead 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.3.6/js/diffusion-6.3.6.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.3.6</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.3.6'
.NET
dotnet add package Diffusion.Client
C