
ws.wamp.jawampa.EventDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jawampa-core Show documentation
Show all versions of jawampa-core Show documentation
jawampa is a library that provides client and server support for the Web Application Messaging Protocol (WAMP) on the JVM.
The newest version!
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