This repository has been archived on 2021-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
envoy/client/src/main/java/envoy/client/event/SendEvent.java

23 lines
512 B
Java
Raw Normal View History

2020-02-11 18:15:15 +01:00
package envoy.client.event;
import envoy.event.Event;
/**
* Project: <strong>envoy-client</strong><br>
* File: <strong>SendEvent.java</strong><br>
* Created: <strong>11.02.2020</strong><br>
*
2020-02-11 18:15:15 +01:00
* @author: Maximilian K&aumlfer
* @since Envoy Client v0.3-alpha
2020-02-11 18:15:15 +01:00
*/
public final class SendEvent extends Event<Event<?>> {
2020-02-11 18:15:15 +01:00
private static final long serialVersionUID = 0L;
2020-02-11 18:15:15 +01:00
/**
* @param value the event to send to the server
*/
public SendEvent(Event<?> value) { super(value); }
}