Ejemplo n.º 1
0
 public static Props Props(AnimationExecutionViewModel animation)
 {
     return(Akka.Actor.Props.Create(() => new AnimationActor(animation)));
 }
Ejemplo n.º 2
0
        public AnimationActor(AnimationExecutionViewModel animation)
        {
            this.animation = animation;

            Receive <string>(message => this.Execute());
        }