Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Actors + netty.io

Initiate Mage
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