Releases
1.6.0
変更
async
メソッド内でAwaitableCoroutine
によって提供されるAwaitableな型をawait
できないように型制約を追加した。
DelayCount
がAction
を追加で引数に受け取れる変更。
CoroutineRunner.Update
でスローされる例外のスタックトレースが正しく出力される修正。
IEnumerator.ToAwaitable
拡張メソッドを削除
AwaitObservable
, AwaitObservableCompleted
, AwaitTask
の追加。
従来のIsCompleted
をIsCompletedSuccessfully
に変更。IsCompleted
はIsCompletedSuccessfully || IsCanceled
を返す。(APIをTask
に近くなるように変更した)
F#のAwaitableCoroutineBuilderにYield
を追加。
その他、軽微な修正。
Changes
Added a type constraint to prevent await
from Awaitable types provided by AwaitableCoroutine
in the async
method.
Changes that DelayCount
can receive an additional Action
as an argument.
Fixed the stack trace of the exception thrown by CoroutineRunner.Update
to be output correctly.
Removed IEnumerator.ToAwaitable
extension method
Added AwaitObservable
, AwaitObservableCompleted
, AwaitTask
.
Changed the old IsCompleted
to IsCompletedSuccessfully
. IsCompleted
returns IsCompletedSuccessfully || IsCanceled
. (Changed API to be closer to Task
)
Added Yield
to AwaitableCoroutineBuilder in F #.
Other minor corrections.
You can’t perform that action at this time.