- Notifications
You must be signed in to change notification settings - Fork34
General Java and Android client SDK for bidirectional communication with Centrifugo and Centrifuge-based server over WebSocket
License
centrifugal/centrifuge-java
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Websocket client forCentrifugo server andCentrifuge library.
There is no v1 release of this library yet – API still evolves. At the moment patch version updates only contain backwards compatible changes, minor version updates can have backwards incompatible API changes.
Check outclient SDK API specification to learn how this SDK behaves. It's recommended to read that before starting to work with this SDK as the spec covers common SDK behavior - describes client and subscription state transitions, main options and methods. Also check out examples folder.
The features implemented by this SDK can be found inSDK feature matrix.
The latest
centrifuge-java
is compatible withCentrifugo server v6, v5 and v4 andCentrifuge >= 0.25.0. For Centrifugo v2, Centrifugo v3 and Centrifuge < 0.25.0 you should usecentrifuge-java
v0.1.0.
Library available in Maven:https://search.maven.org/artifact/io.github.centrifugal/centrifuge-java
This library depends onstreamsupport-minifuture
. In case your project has a dependency tostreamsupport-cfuture
and you have a class name conflicts, you can exclude minifuture safely. Example for Gradle:
implementation('io.github.centrifugal:centrifuge-java:{version}') { exclude group: 'net.sourceforge.streamsupport', module: 'streamsupport-minifuture'}
http://www.javadoc.io/doc/io.github.centrifugal/centrifuge-java
Centrifuge-java library uses Protobuf library (Lite version) for client protocol. This fact and the fact that Protobuf Lite uses reflection internally can cause connection errors when releasing your application with Android shrinking and obfuscation features enabled. Seeprotocolbuffers/protobuf#6463 for details. To deal with this centrifuge-java comes with Proguard rulesincluded in the jar.
More informationabout Android shrinking.
See example code inconsole Java example or indemo Android app
To use with Android don't forget to set INTERNET permission toAndroidManifest.xml
:
<uses-permission android:name="android.permission.INTERNET" />
When a mobile application goes to the background there are OS-specific limitations for established persistent connections - which can be silently closed shortly. Thus in most cases you need to disconnect from a server when app moves to the background and connect again when app goes to the foreground.
Library is available under the MIT license. See LICENSE for details.
This section contains an information for library contributors. You don't need generating protobuf code if you just want to usecentrifuge-java
in your project.
The protobuf definitions are located incentrifuge/main/proto
directory.Protocol
class is generated automatically during project compilation byprotobuf
gradle plugin.
We usemetalava-gradle to ensure we are aware of breaking API changes in the library.
All PRs check API signatures for compatibility. If you see an error, it may indicate there is a breaking change.Regenerate API signature with the following command and include an updatedapi.txt
in your PR:
./gradlew :centrifuge:metalavaGenerateSignature
Also indicate a breaking change in changelog.
To verify API compatibility locally, run the following command:
./gradlew :centrifuge:metalavaCheckCompatibility
- Bump version in
publish-setup.gradle
. - Create new library tag.
The release GitHub Action should now publish the library.
Do all steps from the automatic publishing. Create configuration filegradle.properties
inGRADLE_USER_HOME
:
signing.keyId=<LAST_8_SYMBOLS_OF_KEY_ID>signing.password=<PASSWORD>signing.secretKeyRingFile=/Path/to/.gnupg/secring.gpgmavenCentralUsername=<USERNAME>mavenCentralPassword=<PASSWORD>
Then run:
./gradlew publish --no-daemon --no-parallel./gradlew closeAndReleaseRepository
The second command will promote staged release to production on MavenCentral.
You can do it manually by following the instructions:
https://central.sonatype.org/pages/releasing-the-deployment.html
I.e.
- Login here:https://oss.sonatype.org/
- Go to
Staging repositories
- Find release, push
Close
button, wait - Push
Release
button
- Thanks toMaks Atygaev for initial library boilerplate
About
General Java and Android client SDK for bidirectional communication with Centrifugo and Centrifuge-based server over WebSocket