上一篇博客我们介绍了ActorSystem的创建过程,下面我们就研究一下actor的创建过程. val system = ActorSystem("firstActorSystem",ConfigFactory.load()) val helloActor= system.actorOf(Props(new HelloActor),"HelloActor") helloActor ! "Hello" 普通情况下,我们一般使用ActorSystem
Actor 类定义 Actor 类需要继承AbstractActor类 实现createReceive方法,绑定各类actor收到不同类型消息对应处理不同业务逻辑 默认提供了ReceiveBuilder类辅助创建 Receive 对actorOf的调用返回ActorRef的实例.这是 Actor 实例的句柄,也是与之交互的唯一方法. ActorRef是不可变的,并且与它所表示的 Actor 有一对一的关系.ActorRef也是可序列化的, 序列化通过网络发送它,并在远程主机上使用它,并且它仍然在
1.创建Component ng g component my-new-component 2.创建 Directive ng g directive my-new-directive 3.创建Pipe ng g pipe my-new-pipe 4.创建Service ng g service my-new-service 5.创建Class ng g class my-new-class 6.创建Guard ng g guard my-new-guard 7创建Interface ng g