io.nadron.client.event.Event 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;
/**
* An event which will be transmitted to a session, remote server or client.
*
* @author Abraham Menacherry
*
*/
public interface Event
{
int getType();
void setType(int type);
Object getSource();
void setSource(Object source);
long getTimeStamp();
void setTimeStamp(long timeStamp);
}