All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.thorbenkuck.network.RemoteMessage Maven / Gradle / Ivy

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 +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy