io.nadron.client.event.SessionEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nadclient Show documentation
Show all versions of nadclient Show documentation
This is a client library for Nadron server https://github.com/menacher/java-game-server/tree/netty4/nadron. Java clients can use this program to connect and interact with nadron server.
package io.nadron.client.event;
import io.nadron.client.app.Session;
/**
* In addition to handling events this handler will also have a reference to the
* session.
*
* @author Abraham Menacherry.
*
*/
public interface SessionEventHandler extends EventHandler
{
Session getSession();
void setSession(Session session);
}