Java 的 Actor 模式的实现 JActor 3.0.1 发布

fmms 12年前
     <p><a href="/misc/goto?guid=4958319260500102480" target="_blank">JActor </a>是一个 Java 的 Actor 模式的实现,经过测试在 i5 CPU 上可支持每秒钟发送 8500万条消息,可能是目前最快的。这相当于是 Scala 的 Actor 的纯 Java 版本。<br /> <br /> </p>    <p>JActor 3.0.1 发布,该版本清除了工厂类逻辑,更加容易理解;另外 Actors 保存 Factory 的引用。</p>    <pre class="brush:java; toolbar: true; auto-links: false;">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();  }</pre>    <p><br /> </p>