Package io.undertow.websockets.core
Interface WebSocketCallback<T>
-
public interface WebSocketCallback<T>- Author:
- Stuart Douglas
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcomplete(WebSocketChannel channel, T context)voidonError(WebSocketChannel channel, T context, java.lang.Throwable throwable)
-
-
-
Method Detail
-
complete
void complete(WebSocketChannel channel, T context)
-
onError
void onError(WebSocketChannel channel, T context, java.lang.Throwable throwable)
-
-