Zaz.Server.Advanced.Service.CommandsService.GetScheduled C# (CSharp) Method

GetScheduled() private method

private GetScheduled ( string id, DateTime token ) : ExecutionStats
id string
token DateTime
return ExecutionStats
        public ExecutionStats GetScheduled(string id, DateTime? token)
        {
            var executionId = ExecutionId.FromString(id);
            return _executor.GetExecutionStats(executionId, token);
        }