/// <summary>
 /// Resume execution of this transition using the given tokens. Transition that trigger instantly and don't
 /// store any tokens or state information can ignore this method
 /// </summary>
 public override void Resume()
 {
     _engine.Restore(State);
     _engine.Start();
 }