Exemplo n.º 1
0
        public Guid UpdateStatistics(string jobLabel = null)
        {
            Logging.LogDebug("UpdateStatistics");
            var jobId = Guid.NewGuid();
            var job   = new UpdateStatsJob(jobId, jobLabel, this);

            QueueJob(job);
            return(jobId);
        }
Exemplo n.º 2
0
 public Guid UpdateStatistics()
 {
     Logging.LogDebug("UpdateStatistics");
     var jobId = Guid.NewGuid();
     var job = new UpdateStatsJob(jobId, this);
     QueueJob(job);
     return jobId;
 }