Skip to content
Advertisement

Make order of responses match order of requests in Netty

Context

I am writing a Netty application (Netty 4) in which the processing of each message might take some time. As an example of what I mean I have created an EchoHandler that responds with the original message, though sometimes after a short delay:

JavaScript

Problem

Using this code, the order of the responses is not guaranteed to be the same as the order of the incoming requests. In fact, if the first message consists of the string “delay” and the second of some other string, the order of the responses will be reversed! I have written a test to illustrate this:

JavaScript

Question

I am looking for a built-in way in Netty to guarantee the order of the outgoing responses matches the order of the incoming messages. Using an imaginary extension of the library, I would rewrite the handler as follows:

JavaScript

Does Netty provide something like this out of the box? It sounds like a common use case and I’d much rather rely on battle-tested code than writing my own queuing implementation.

Advertisement

Answer

Though not built-in, a seemingly idiomatic solution for this problem is a custom MessageToMessageCodec. Based on the example which uses String as message type, I wrote the following codec which handles queuing for you:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement