org.webbitserver.stub.StubWebSocketConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webbit Show documentation
Show all versions of webbit Show documentation
A Java event based WebSocket and HTTP server
package org.webbitserver.stub;
import org.webbitserver.HttpRequest;
import org.webbitserver.WebSocketConnection;
/**
* Implementation of WebSocketConnection that is easy to construct, and inspect results.
* Useful for testing.
*
* @deprecated use {@link StubConnection}
*/
@Deprecated
public class StubWebSocketConnection extends StubConnection {
public StubWebSocketConnection(HttpRequest httpRequest) {
super(httpRequest);
}
public StubWebSocketConnection() {
super();
}
}