Exemplo n.º 1
0
        public bool Handle(GetFinalResultsQuery query)
        {
            var result = new StateResult(Store);

            Sender.Tell(result);
            return(true);
        }
Exemplo n.º 2
0
        public bool Handle(GetFinalResultsQuery query)
        {
            if (Store < _maxStore)
            {
                Self.Tell(query, Sender);
            }
            else
            {
                var result = new StateResult(Store);
                Sender.Tell(result);
            }

            return(true);
        }