• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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)
 
Back
Top