kryonet icon indicating copy to clipboard operation
kryonet copied to clipboard

TCP/UDP client/server library for Java, based on Kryo

Results 69 kryonet issues
Sort by recently updated
recently updated
newest added

Been working on a project since 2010 in Java, has been migrated through all the versions since. It's essentially outsider art what I'm working on. Ran into a problem where...

This is a re-upload of #118 with a couple things i added. - All features from #118 - Java 8 support. - Kryo 2.24.0 -> 4.0.2 - oss-parent 7 ->...

I am trying to run an application as a Graal Native image which sets up a simple Kryonet server from the examples on this git page, but I have coming...

Bumps [junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

The client is ran on Android 5.1.1 and my server is on an Ubuntu 14.04. Is this because my client calls `Client.connect` in a temporary thread?

Client.connect accepts a timeout parameter which is stored so Client.reconnect will use that, however within Client.connect at line 175, tcp.connect uses a hard-coded timeout value of 5000 where the timeout...

Hi should we not dispose the server? I open the connection like in the readme explained and then when I close the app I get the error ``` java 00:00...

Currently connect() method trashes the update thread. That makes handling multiple parallel connections troublesome. For example that may be done by separating calls to update() methods in two threads -...

In Client.java (https://github.com/EsotericSoftware/kryonet/blob/master/src/com/esotericsoftware/kryonet/Client.java) at line 53, there is a call: `System.setProperty("java.net.preferIPv6Addresses", "false");` Now I don't think this is necessary. On my phone, it returns this error: > 03-26 10:56:33.042: E/System(11677):...

This is library satisfies all my needs except I found out it can only transmit and receive **Java Objects**, which is not desirable for all applications. This is especially problematic...