tlf30 / monkey-netty

A implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

monkey-netty

Build
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.

Installing with Gradle

Note: We will no longer be publishing packages to GitHub, future packages will be in Maven Central.
In your build.gradle you will need to:

dependencies {
    ...
    implementation 'io.tlf.monkeynetty:monkey-netty:0.1.2-SNAPSHOT'
}

Installing with Maven

Note: We will no longer be publishing packages to GitHub, future packages will be in Maven Central.
In your pom.xml you will need to:

<dependencies>
    ...
    <dependency>
        <groupId>io.tlf.monkeynetty</groupId>
        <artifactId>monkey-netty</artifactId>
        <version>0.1.2-SNAPSHOT</version>
    </dependency>
</dependencies>

About

A implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication.

License:MIT License


Languages

Language:Java 100.0%