Actors + netty.io

Newbie Spellweaver
Joined
Jul 13, 2015
Messages
71
Reaction score
31
In the last weeks I've been studying about the actor model and its java implementation. Then I've tried to implement on my TCP server but realized that Netty by default use multi-core system.
Code:
EventLoopGroup bossGroup = new NioEventLoopGroup();
EventLoopGroup workerGroup = new NioEventLoopGroup();
...
b.group(bossGroup, workerGroup);
So in this application, the use of a actor framework (like akka or orbit) is not recommended or not possible? (My client is AS3)