[addressable]:fix CancellationToken can't stop UniTask #114
parent
9d3b7adc8e
commit
65b6553a1a
|
@ -152,7 +152,11 @@ namespace Cysharp.Threading.Tasks
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
completed = true;
|
completed = true;
|
||||||
if (handle.Status == AsyncOperationStatus.Failed)
|
if (cancellationToken.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
core.TrySetCanceled(cancellationToken);
|
||||||
|
}
|
||||||
|
else if (handle.Status == AsyncOperationStatus.Failed)
|
||||||
{
|
{
|
||||||
core.TrySetException(handle.OperationException);
|
core.TrySetException(handle.OperationException);
|
||||||
}
|
}
|
||||||
|
@ -465,7 +469,11 @@ namespace Cysharp.Threading.Tasks
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
completed = true;
|
completed = true;
|
||||||
if (handle.Status == AsyncOperationStatus.Failed)
|
if (cancellationToken.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
core.TrySetCanceled(cancellationToken);
|
||||||
|
}
|
||||||
|
else if (handle.Status == AsyncOperationStatus.Failed)
|
||||||
{
|
{
|
||||||
core.TrySetException(handle.OperationException);
|
core.TrySetException(handle.OperationException);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue