コード例 #1
0
 public void ActorProxyTest()
 {
     TestLauncherActor.Test(() =>
     {
         string data           = "ARn was here !";
         IActorProxy actorTest = new ActorProxy();
         actorTest.Store(data);
         IFuture <string> result = actorTest.Retrieve();
         Assert.AreEqual(data, result.Result());
     });
 }