An implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication.
Checkout our Wiki for getting started.
See example for server and client in examples
module.
In your build.gradle
you will need to:
- Include the github repo:
repositories {
...
maven {
url = 'https://maven.pkg.github.com/tlf30/monkey-netty'
}
}
- Specify the dependency:
dependencies {
...
implementation 'io.tlf.monkeynetty:monkey-netty:0.1.0'
}
In your pom.xml you will need to:
- Include the github repo:
<repositories>
...
<repository>
<id>monkey-netty</id>
<name>Monkey-Netty GitHub Packages</name>
<url>https://maven.pkg.github.com/tlf30/monkey-netty</url>
</repository>
</repositories>
- Specify the dependency:
<dependencies>
...
<dependency>
<groupId>io.tlf.monkeynetty</groupId>
<artifactId>monkey-netty</artifactId>
<version>0.1.0</version>
</dependency>
</dependencies>