《通过C#学Proto.Actor模型》之PID
2021-07-14 03:13
标签:case names request ati 代码 ring time end 获取 PID对象是代表Actor对象的进程,是能过Actor.Spawn(props)获取的;它有什么成员呢?既然代理Actor,首先有一个ID,标识自己是谁,Actor在Spawn时可以命名这个ID,否则会自动生成。还有三种向邮箱发消息的方法,Tell(),Request(),RequestAsync(),还有一个发送系统消息(Started,Stoping,Stoped等)方法SendSystemMessage(),还有一个停止的方法Stop()。 Actor中的Receive接到消息后,Context是中有两个PID对象,一个Self,一个Sender,Tell方法到达后,Sender对象为空;Request到达后,Sender=Self;而RequestAsync则Sender,Self都有对象,但不相同,这是一个区别。再有就是Tell和Request都是单向调用(我实测与官方文档说明有出入),RequestAsync是可以有返回值的,详见代码,如下是运行结果:
《通过C#学Proto.Actor模型》之PID 标签:case names request ati 代码 ring time end 获取 原文地址:https://www.cnblogs.com/axzxs2001/p/9552186.html 1 using Proto;
2 using System;
3 using System.Threading;
4 using System.Threading.Tasks;
5
6 namespace P004_PID
7 {
8 class Program
9 {
10 static void Main(string[] args)
11 {
12 var props = Actor.FromProducer(() => new MyActor());
13 var pid = Actor.Spawn(props);
14 while (true)
15 {
16 Console.WriteLine("**************************************");
17 Console.WriteLine("1、单向请求Tell 2、单向请求Request 3、双向请求RequestAsync");
18 switch (Console.ReadLine())
19 {
20 case "1":
21 Console.WriteLine("单向请求开始");
22 pid.Tell(new Request { Name = "单向请求 Tell", RequestType = "one-way", Time = DateTime.Now });
23 break;
24 case "2":
25 Console.WriteLine("单向请求开始");
26 //无法接回应签,与官网说法不一
27 pid.Request(new Request { Name = "单向请求 Request", RequestType = "two-way-1", Time = DateTime.Now }, pid);
28
29 break;
30 case "3":
31 Console.WriteLine("双向请求开始");
32 var response = pid.RequestAsync
文章标题:《通过C#学Proto.Actor模型》之PID
文章链接:http://soscw.com/index.php/essay/104927.html