KryoNet-slf4j is a fork of KryoNet, a Java library that provides a clean and simple API for efficient TCP and UDP client/server network communication using NIO. KryoNet uses the Kryo serialization library to automatically and efficiently transfer object graphs across the network.
KryoNet runs on both the desktop and on Android.
KryoNet-slf4j is a fork of KryoNet that replaces the Minlog logging used by KryoNet with slf4j providing users the choice to pick their desired logging implementation instead of having to deal with multiple logging implementations when using KryoNet in projects using a different logging implementation.
KryoNet-slf4j also decouples the explicit dependency on jsonbeans letting users pick their own json implementations.
KryoNet-slf4j is built off v2.22.0-RC1 of KryoNet and accordingly tracks the version. Please refer to the KryoNet project page for detailed documentation on the KryoNet API and its usage.
You can obtain the release binaries from the releases page above or alternately if you use Maven you can get it directly from Maven Central using the following dependency configurations:
<dependency>
<groupId>net.lizalab</groupId>
<artifactId>kryonet-slf4j</artifactId>
<version>2.22.0</version>
<scope>compile</scope>
</dependency>