Fiber sub-class used by the scheduler to run tasks in. In addition to the functionality of the base fiber, it also: 1. stores a reference to the task currently being executed 2. can be stored in an object pool
Constructor
Terminates itself by killing underlying task
If not null, refers to the Task object currently being executed in this fiber
Allows smooth integration of WorkerFiber with object pool
See Implementation
Fiber sub-class used by the scheduler to run tasks in. In addition to the functionality of the base fiber, it also: 1. stores a reference to the task currently being executed 2. can be stored in an object pool