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

ws.wamp.jawampa.EventDetails Maven / Gradle / Ivy

package ws.wamp.jawampa;

public class EventDetails {
	
	
	final T message;
	final String topic;
	
	public EventDetails(T msg, String topic){
		this.message = msg;
		this.topic = topic;
	}

	public T message() {
		return message;
	}

	public String topic() {
		return topic;
	}
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy