Scheduler.Start C# (CSharp) 메소드

Start() 공개 메소드

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

Usage Example

예제 #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