Fiber scheduler synchronization context to support task synchronization across schedulers or other synchronization models.
상속: System.Threading.SynchronizationContext
 /// <summary>
 /// Initializes a new instance of the <see cref="SpicyPixel.Threading.FiberScheduler"/> class.
 /// </summary>
 protected FiberScheduler()
 {
     AllowInlining = true;
     schedulerThread = Thread.CurrentThread;
     SynchronizationContext = new FiberSchedulerSynchronizationContext(this);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SpicyPixel.Threading.FiberScheduler"/> class.
 /// </summary>
 protected FiberScheduler()
 {
     AllowInlining          = true;
     schedulerThread        = Thread.CurrentThread;
     SynchronizationContext = new FiberSchedulerSynchronizationContext(this);
 }