Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8833539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T08:48:13+00:00 2026-06-14T08:48:13+00:00

A server handler. For each received message, there will be multiple responses. Business Logic

  • 0

A server handler. For each received message, there will be multiple responses. Business Logic involves putting the requests in a queue, removing from the queue, processing the requests and responding.

How do i process requests asynchronously, respond asynchronously while maintaining the integrity of the queue?

The code below is behaves synchronously.

public class TestHandler extends SimpleChannelHandler {

    @Override
    public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) throws Exception {
        // Send greeting for a new connection.
        e.getChannel().write(
                "Welcome to " + InetAddress.getLocalHost().getHostName() + "!\r\n");
        e.getChannel().write("It is " + new Date() + " now.\r\n");

    }

    @Override
    public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) {      
        String XMLFromClient = (String) e.getMessage() ;

        ReadXML2 rx = new ReadXML2();
        String response = null;
        response = rx.processInput(XMLFromClient);
        ChannelFuture future = e.getChannel().write(response);
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) {
        e.getCause().printStackTrace();
        Channel ch = e.getChannel();
        ch.close();
    } 
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T08:48:14+00:00Added an answer on June 14, 2026 at 8:48 am

    In netty writes are always asynchronous, but messages written to the same channel will be queued up in sequence. While reading, if you want asynchronous operation then you need to add an ExecutionHandler to the ChannelPipeline. If ordering is important then use the the OrderedMemoryAwareThreadPoolExecutor implementation. You need to add it to the ChannelPipeline ahead of your own TestHandler. The new Netty 4 API provides better control over async pipeline handlers, but it is still under development.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple clients and one server. Server handles each client in one thread.
I've written a high-throughput server that handles each request in its own thread. For
I have a server-sent events handler in ASP.NET Response.ContentType = text/event-stream; while (true) {
I'm looking for a reliable mechanism to generate a server side postback handler for
Suppose I have a event handler which makes two AJAX calls to the server:
So I'm trying to do a Server.Transfer from a generic handler to an regular
I've got an Apache2/web2py server running using the wsgi handler functionality. Within one of
I have the following node.js server-side code: var app = require('http').createServer(handler) , io =
Is it possible to cache the response of a http handler on the server
Using Visual Studio 2008 and built-in web server. In a Web Handler .ashx file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.