Top "Netty" questions

An open source asynchronous event-driven network application framework written in Java.

Netty performance

Is there any real difference to the performance when you use Netty and if you don't use it in an …

java performance nio netty
How to configure netty logger factory in order to see the output of LoggingHandler?

I am using slf4j logging with logback and at the beginning of my app I wrote InternalLoggerFactory.setDefaultFactory(new …

netty slf4j
Setting socket timeout on netty channel

I have a netty channel and I would like to set a timeout on the underlying socket ( it is set …

netty
How to write a high performance Netty Client

I want an extremely efficient TCP client to send google protocol buffer messages. I have been using the Netty library …

tcp protocol-buffers netty
How to turn off Netty library debug output?

I am using Netty (via the Ning async HTTP library) to retrieve documents via HTTP. This produces a huge amount …

java scala netty error-logging
Websockets connection failure on amazon ec2

I have a netty server running the atmosphere framework for a real-time notification system over websockets. The system works perfectly …

amazon-ec2 websocket netty atmosphere
TCP keep-alive to determine if client disconnected in netty

I'm trying to determine if a client has closed a socket connection from netty. Is there a way to do …

tcp netty
Netty: getting remote ip address in messageReceived

In my class (extends SimpleChannelHandler) I'm trying to get the ip where the message was originally sent from. @Override public …

java networking ip netty
Asynchronous HTTP client with Netty

I'm new to netty and still strugling to find my way. I'm looking to create an http client that works …

java http asynchronous nio netty
Shutdown netty programmatically

I'm using netty 4.0.24.Final. I need to start/stop netty server programmatically. On starting the server, the thread gets blocked …

java netty server shutdown