Top "Netty" questions

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

Use Jetty or Netty?

We're in the process of writing a high-performance server for processing messages. We've been using Jetty for several years and …

asynchronous jetty netty
Java custom event handler and listeners

I'm currently playing around with a Java implementation of Socket.io, available here: netty-socketio I've got the server up and …

java events socket.io listener netty
Netty Client to Server message

This is actually my first post on here and I have been trying to figure this out for some time …

java tcp connection client netty
Create a ByteBuf in Netty 4.0

Two simple questions, which I am not able to solve by reading the documentation: I have a byte[] How can …

java netty nio
Set up Netty with 2-way SSL Handskake (client and server certificate)

I am now trying to set up Netty with a 2 way SSL handshake, where both the client and server present …

java ssl netty handshake
Benefits of Netty over basic ServerSocket server?

I need to create a relatively simple Java tcp/ip server and I'm having a little trouble determining if I …

java tcp network-programming netty serversocket
How to fix the "Found Netty's native epoll transport in the classpath, but epoll is not available. Using NIO instead" warning?

I am using Cassandra and, during startup, Netty prints a warning with a stack trace: Found Netty's native epoll transport …

java cassandra netty
How does the Netty threading model work in the case of many client connections?

I intend to use Netty in an upcoming project. This project will act as both client and server. Especially it …

java asynchronous network-programming nio netty
Netty Channel closed detection

I am building a server client application using netty and ios, I am facing a problem when the user just …

ios timeout protocols netty
What does ChannelOption.SO_BACKLOG do?

.option(ChannelOption.SO_BACKLOG, 100) is shown in the Netty 4 upgrade doc. Can you explain what it does? Thanks!

java netty