Releases: s-rayleigh/CoroutineEx
Releases · s-rayleigh/CoroutineEx
Suppress Throwing
Added possibility to suppress bubbling up of the exception or cancellation of specific coroutine task to the parent coroutine task by use of the .ConfigureYield(true)
method
Exception and Cancellation Bubbling
- Added exception and cancellation bubbling, so inner tasks can cancel or fault outer.
- Added
CancellationToken
argument to the following methods:CoroutineTask.Delay
CoroutineTask.TransitionByTime
CoroutineTask.TransitionBySpeed
- Fix negative value direction for the
CoroutineTask.TransitionByTime
method
Add more doc comments
Full Changelog: v1.1.1...v1.1.2
Some fixes, API changes and minor additions
Full Changelog: v1.1.0...v1.1.1
Creation of Completed Tasks
Added methods for creation of already completed tasks in different states.