/// <summary>
 /// Cause the item to schedule after a given timeout.
 /// </summary>
 /// <param name="timeout"></param>
 /// <returns></returns>
 public ScheduleWorkflowItemAction After(TimeSpan timeout)
 {
     _scheduleWorkflowAction = Custom(_workflowItem.RescheduleDecisions(timeout).ToArray());
     return(this);
 }