Akka.NET TestKit synchronous behavior -


i have following c# code test akka.net actor's behavior. statement productactor.tell(new changeactivestatus(true)); expected blocking call (testkit makes synchronous call per blog) i'm seeing returns immediately. result, second test fails although activestatus changed later.

[testmethod] public void productactorunittests_checkfor_activestatuschanged() {     var productactor = actorofastestactorref<productactor>();      assert.istrue(productactor.underlyingactor.activestatus == false, "the initial activestatus expected false.");      productactor.tell(new changeactivestatus(true));      assert.istrue(productactor.underlyingactor.activestatus == true, "the new activestatus expected true."); } 

****** update *****

the following code thread.sleep(10000) succeeds:

[testmethod] public void productactorunittests_checkfor_activestatuschanged() {     var productactor = actorofastestactorref<productactor>();      assert.istrue(productactor.underlyingactor.activestatus == false, "the initial activestatus expected false.");      productactor.tell(new changeactivestatus(true));      thread.sleep(10000);      assert.istrue(productactor.underlyingactor.activestatus == true, "the new activestatus expected true."); } 

most of akka.net unit tests have seen use 2 actors. blog shows example (in original question) has 2 actors, work because operations synchronous. if there multiple actors in system, example actor messages actor b messages actor c messages actor again, messaging happen asynchronously, have wait until operations complete.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -