Example #1
0
        private void WaitingForHub()
        {
            Receive <SetHub>(h =>
            {
                _hub = h.Hub;
                Become(HubAvailable);
                Stash.UnstashAll();
            });

            ReceiveAny(_ => Stash.Stash());
        }
Example #2
0
 public SetHub(NewsFeedServiceHelper hub)
 {
     Hub = hub;
 }