Uses of Interface
org.jboss.netty.channel.ExceptionEvent
-
Packages that use ExceptionEvent Package Description org.jboss.netty.bootstrap IoC/DI friendly helper classes which enable an easy implementation of typical client side and server side channel initialization.org.jboss.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChanneland its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.org.jboss.netty.example.discard org.jboss.netty.example.echo org.jboss.netty.example.factorial org.jboss.netty.example.http.file org.jboss.netty.example.http.helloworld org.jboss.netty.example.http.snoop org.jboss.netty.example.http.upload org.jboss.netty.example.http.websocketx.autobahn This package is intended for use with testing against the Python AutoBahn test suite.org.jboss.netty.example.http.websocketx.client This is an example web service client.org.jboss.netty.example.http.websocketx.server This package contains an example web socket web server.org.jboss.netty.example.localtime org.jboss.netty.example.objectecho org.jboss.netty.example.proxy org.jboss.netty.example.qotm org.jboss.netty.example.securechat org.jboss.netty.example.telnet org.jboss.netty.example.uptime org.jboss.netty.handler.codec.frame Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.org.jboss.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.org.jboss.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.org.jboss.netty.handler.queue The special-purpose handlers that store an event into an internal queue instead of propagating the event immediately.org.jboss.netty.handler.ssl SSL · TLS implementation based onSSLEngine -
-
Uses of ExceptionEvent in org.jboss.netty.bootstrap
Methods in org.jboss.netty.bootstrap with parameters of type ExceptionEvent Modifier and Type Method Description voidServerBootstrap.Binder. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.channel
Classes in org.jboss.netty.channel that implement ExceptionEvent Modifier and Type Class Description classDefaultExceptionEventThe defaultExceptionEventimplementation.Methods in org.jboss.netty.channel with parameters of type ExceptionEvent Modifier and Type Method Description voidSimpleChannelHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)Invoked when an exception was raised by an I/O thread or aChannelHandler.voidSimpleChannelUpstreamHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)Invoked when an exception was raised by an I/O thread or aChannelHandler. -
Uses of ExceptionEvent in org.jboss.netty.channel.socket.http
Methods in org.jboss.netty.channel.socket.http with parameters of type ExceptionEvent Modifier and Type Method Description voidHttpTunnelingClientSocketChannel.ServletChannelHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHttpTunnelingServlet.OutboundConnectionHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.discard
Methods in org.jboss.netty.example.discard with parameters of type ExceptionEvent Modifier and Type Method Description voidDiscardClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidDiscardServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.echo
Methods in org.jboss.netty.example.echo with parameters of type ExceptionEvent Modifier and Type Method Description voidEchoClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidEchoServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.factorial
Methods in org.jboss.netty.example.factorial with parameters of type ExceptionEvent Modifier and Type Method Description voidFactorialClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidFactorialServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.http.file
Methods in org.jboss.netty.example.http.file with parameters of type ExceptionEvent Modifier and Type Method Description voidHttpStaticFileServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.http.helloworld
Methods in org.jboss.netty.example.http.helloworld with parameters of type ExceptionEvent Modifier and Type Method Description voidHttpHelloWorldServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.http.snoop
Methods in org.jboss.netty.example.http.snoop with parameters of type ExceptionEvent Modifier and Type Method Description voidHttpSnoopServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.http.upload
Methods in org.jboss.netty.example.http.upload with parameters of type ExceptionEvent Modifier and Type Method Description voidHttpUploadClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHttpUploadServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.http.websocketx.autobahn
Methods in org.jboss.netty.example.http.websocketx.autobahn with parameters of type ExceptionEvent Modifier and Type Method Description voidAutobahnServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.http.websocketx.client
Methods in org.jboss.netty.example.http.websocketx.client with parameters of type ExceptionEvent Modifier and Type Method Description voidWebSocketClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.http.websocketx.server
Methods in org.jboss.netty.example.http.websocketx.server with parameters of type ExceptionEvent Modifier and Type Method Description voidWebSocketServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.localtime
Methods in org.jboss.netty.example.localtime with parameters of type ExceptionEvent Modifier and Type Method Description voidLocalTimeClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidLocalTimeServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.objectecho
Methods in org.jboss.netty.example.objectecho with parameters of type ExceptionEvent Modifier and Type Method Description voidObjectEchoClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidObjectEchoServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.proxy
Methods in org.jboss.netty.example.proxy with parameters of type ExceptionEvent Modifier and Type Method Description voidHexDumpProxyInboundHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidHexDumpProxyInboundHandler.OutboundHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.qotm
Methods in org.jboss.netty.example.qotm with parameters of type ExceptionEvent Modifier and Type Method Description voidQuoteOfTheMomentClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidQuoteOfTheMomentServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.securechat
Methods in org.jboss.netty.example.securechat with parameters of type ExceptionEvent Modifier and Type Method Description voidSecureChatClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidSecureChatServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.telnet
Methods in org.jboss.netty.example.telnet with parameters of type ExceptionEvent Modifier and Type Method Description voidTelnetClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)voidTelnetServerHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.example.uptime
Methods in org.jboss.netty.example.uptime with parameters of type ExceptionEvent Modifier and Type Method Description voidUptimeClientHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.handler.codec.frame
Methods in org.jboss.netty.handler.codec.frame with parameters of type ExceptionEvent Modifier and Type Method Description voidFrameDecoder. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.handler.codec.http.websocketx
Methods in org.jboss.netty.handler.codec.http.websocketx with parameters of type ExceptionEvent Modifier and Type Method Description voidWebSocketServerProtocolHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.handler.codec.marshalling
Methods in org.jboss.netty.handler.codec.marshalling with parameters of type ExceptionEvent Modifier and Type Method Description voidCompatibleMarshallingDecoder. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)CallsChannel.close()if a TooLongFrameException was thrown -
Uses of ExceptionEvent in org.jboss.netty.handler.codec.spdy
Methods in org.jboss.netty.handler.codec.spdy with parameters of type ExceptionEvent Modifier and Type Method Description voidSpdySessionHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.handler.queue
Methods in org.jboss.netty.handler.queue with parameters of type ExceptionEvent Modifier and Type Method Description voidBlockingReadHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) -
Uses of ExceptionEvent in org.jboss.netty.handler.ssl
Methods in org.jboss.netty.handler.ssl with parameters of type ExceptionEvent Modifier and Type Method Description voidSslHandler. exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)
-