vlingo / xoom-wire

The VLINGO XOOM platform SDK wire protocol messaging implementations, such as with full-duplex TCP and UDP multicast, and RSocket, using VLINGO XOOM ACTORS.
Mozilla Public License 2.0
13 stars 11 forks source link

Reuse the same NettyInboundHandler for incoming requests #48

Closed pflueras closed 3 years ago

pflueras commented 3 years ago

Previously for each request a new NettyInboundHandler object was created. These objects accumulate quite fast provoking OutOfMemoryError.

Before: vlingo-helloworld_before-issue-47

After: vlingo-helloworld_after-issue-47