com.github.thorbenkuck.network.RemoteMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easy-net Show documentation
Show all versions of easy-net Show documentation
An EventStream driven, simple to use Client/Server framework
The newest version!
package com.github.thorbenkuck.network;
import com.github.thorbenkuck.network.connection.ConnectionContext;
public final class RemoteMessage {
private final Object data;
private final ConnectionContext context;
public RemoteMessage(Object data, ConnectionContext connection) {
this.data = data;
this.context = connection;
}
public Object data() {
return data;
}
public ConnectionContext context() {
return context;
}
@Override
public String toString() {
return "RemoteMessage{" +
"data=" + data +
", context=" + context +
'}';
}
}