Home
last modified time | relevance | path

Searched refs:throwable (Results 1 – 7 of 7) sorted by relevance

/unit/src/java/javax/websocket/
H A DEndpoint.java46 public void onError(Session session, Throwable throwable) { in onError() argument
/unit/src/java/nginx/unit/websocket/pojo/
H A DPojoEndpointBase.java123 public final void onError(Session session, Throwable throwable) { in onError() argument
127 pojo.getClass().getName()), throwable); in onError()
133 throwable)); in onError()
H A DPojoMethodMapping.java253 Session session, Throwable throwable) throws DecodeException { in getOnErrorArgs() argument
255 throwable, null); in getOnErrorArgs()
337 EndpointConfig config, Throwable throwable, CloseReason closeReason) in buildArgs() argument
347 result[i] = throwable; in buildArgs()
/unit/src/java/nginx/unit/websocket/
H A DAsyncChannelWrapperSecure.java448 private volatile Throwable throwable = null; field in AsyncChannelWrapperSecure.WrapperFuture
469 throwable = t; in fail()
472 handler.failed(throwable, attachment); in fail()
496 if (throwable != null) { in get()
497 throw new ExecutionException(throwable); in get()
510 if (throwable != null) { in get()
511 throw new ExecutionException(throwable); in get()
H A DWsSession.java578 Throwable throwable = null; in fireEndpointOnClose() local
590 throwable = t1; in fireEndpointOnClose()
597 if (throwable == null) { in fireEndpointOnClose()
598 throwable = t2; in fireEndpointOnClose()
605 if (throwable != null) { in fireEndpointOnClose()
606 fireEndpointOnError(throwable); in fireEndpointOnClose()
611 private void fireEndpointOnError(Throwable throwable) { in fireEndpointOnError() argument
618 localEndpoint.onError(this, throwable); in fireEndpointOnError()
/unit/src/java/nginx/unit/websocket/server/
H A DWsHttpUpgradeHandler.java148 private void onError(Throwable throwable) { in onError() argument
154 ep.onError(wsSession, throwable); in onError()
/unit/src/java/nginx/unit/
H A DContext.java3007 public void log(String message, Throwable throwable)