Akka Actor_Future的使用

Akka Actor_Future的使用java


常見的是經過Actor的tell方法給另一個actor發送消息,可是actor 和 future怎麼交互,發送消息,以下,ide

Future<Object> future = Patterns.ask(a, "are you ready?", timeout);

作了一個Future 和 Actor 結合使用的例子,以下,性能

package com.usoft;

import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import akka.actor.Props;
import akka.actor.UntypedActor;
import akka.event.Logging;
import akka.event.LoggingAdapter;
import akka.pattern.Patterns;
import akka.util.Timeout;
import scala.concurrent.Await;
import scala.concurrent.Future;
import scala.concurrent.duration.Duration;


/**
 * Created by liyanxin on 2015/1/8.
 */
public class HelloFuture {

    public static class A extends UntypedActor {

        private final LoggingAdapter log = Logging.getLogger(getContext().system(), this);

        @Override
        public void onReceive(Object message) throws Exception {
            if (message instanceof String) {
                Thread.sleep(3000);
                System.out.println(Thread.currentThread().getName() + " sleep end");
                System.out.println("接收的消息:" + message);
                // 返回一個消息
                this.getSender().tell("hello world", this.getSelf());
                System.out.println("sender path=" + this.getSender().path());
                getContext().stop(this.getSelf());
                log.info("|||{} has stop", this.getSelf().path());
            }
        }
    }

    public static void main(String args[]) throws Exception {
        System.out.println(Thread.currentThread().getName());
        ActorSystem system = ActorSystem.create("mySystem");
        ActorRef a = system.actorOf(Props.create(A.class), "helloWorld");
        Timeout timeout = new Timeout(Duration.create(5, "seconds"));
        Future<Object> future = Patterns.ask(a, "are you ready?", timeout);

        // This will cause the current thread to block and wait for the UntypedActor to ‘complete’
        // the Future with it’s reply.
        // 在這裏會阻塞到 Await.result 方法上,但這會致使性能的損失。
        String result = (String) Await.result(future, timeout.duration());
        System.out.println(result);
    }

}

運行結果,this

mainspa

mySystem-akka.actor.default-dispatcher-4 sleep endscala

接收的消息:are you ready?code

hello worldxml

sender path=akka://mySystem/temp/$aget

[INFO] [01/08/2015 16:55:11.267] [mySystem-akka.actor.default-dispatcher-4] [akka://mySystem/user/helloWorld] |||akka://mySystem/user/helloWorld has stopit


Maven依賴庫

<dependency>
    <groupId>com.typesafe.akka</groupId>
    <artifactId>akka-actor_2.11</artifactId>
    <version>2.3.8</version>
</dependency>

結果是出來了,可是代碼是如何工做的,這些細節仍是不清楚的。

===============END===============

相關文章
相關標籤/搜索