Scheduler.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
    public virtual void Start()
    {
        pendingSkillActivations = new List<SkillActivation>();
    }

Usage Example

Beispiel #1
0
 public void PostShouldThrowExceptionAfterStop()
 {
     var scheduler = new Scheduler(new FakeLoggerFactory());
     scheduler.Start();
     scheduler.Stop();
     Assert.Throws<InvalidOperationException>(() => scheduler.Post("testing", () => { }));
 }
All Usage Examples Of Scheduler::Start