Example #1
0
        public static IGlobalConfiguration <SchedulerResolution> UseSecondResolution(
            [NotNull] this IGlobalConfiguration configuration)
        {
            if (configuration == null)
            {
                throw new ArgumentNullException("configuration");
            }

            return(configuration.UseSchedulerResolution(new SecondSchedulerResolution()));
        }