JActor 2.2.0 RC1 发布,该版本改进了 JLPCActors 的功能,包括依赖注入,工厂类实例化,并发、初始化和同步请求的方面。
JActor 是一个 Java 的 Actor 模式的实现,经过测试在 i5 CPU 上可支持每秒钟发送 8500万条消息,可能是目前最快的。这相当于是 Scala 的 Actor 的纯 Java 版本。
示例代码:
- JAMailboxFactory mailboxFactory = JAMailboxFactory.newMailboxFactory(1);
- try {
- Mailbox mailbox = mailboxFactory.createMailbox();
- JCActor a = new JCActor(mailbox);
- (new Include(Greeter.class)).call(a);
- JAFuture future = new JAFuture();
- String greeting = (new Hi()).send(future, a);
- System.out.println(greeting);
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- mailboxFactory.close();
- }
下载地址:https://github.com/laforge49/JActor
原文链接:http://www.oschina.net/news/26884/jactor-2-2-0-rc1
【编辑推荐】