Naoyuki Kanezawa 85631df4c0 handle error
2013-04-28 23:42:35 +09:00
2013-04-28 23:42:35 +09:00
2013-04-22 03:37:28 +09:00
2013-04-22 03:37:28 +09:00
2013-04-22 22:45:50 +09:00
2013-04-23 00:43:17 +09:00

Engine.IO-client.java

Build Status

This is the Engine.IO Client Library for Java, which is simply ported from the client for JavaScript.

Hello World

Engine.IO-client.java has the similar api with the client for js. You can use Socket to connect as follows:

Socket socket = new Socket("ws://localhost") {
  @Override
  public void onopen() {}

  @Override
  public void onmessage(String data) {}

  @Override
  public void onclose() {}
};
socket.open();

Features

This library supports all of the features the JS client does, including events, options and upgrage, except the Flash transport.

License

MIT

Description
Engine.IO Client Library for Java
Readme MIT 632 KiB
Languages
Java 99.1%
JavaScript 0.8%
Makefile 0.1%