mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-14 19:10:09 +00:00
Add unobserved task exception publishing if an exception inside ExceptionResultSource is never thrown
This commit is contained in:
@@ -194,6 +194,7 @@ namespace Cysharp.Threading.Tasks
|
||||
sealed class ExceptionResultSource : IUniTaskSource
|
||||
{
|
||||
readonly ExceptionDispatchInfo exception;
|
||||
bool calledGet;
|
||||
|
||||
public ExceptionResultSource(Exception exception)
|
||||
{
|
||||
@@ -202,6 +203,11 @@ namespace Cysharp.Threading.Tasks
|
||||
|
||||
public void GetResult(short token)
|
||||
{
|
||||
if (!calledGet)
|
||||
{
|
||||
calledGet = true;
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
exception.Throw();
|
||||
}
|
||||
|
||||
@@ -219,11 +225,20 @@ namespace Cysharp.Threading.Tasks
|
||||
{
|
||||
continuation(state);
|
||||
}
|
||||
|
||||
~ExceptionResultSource()
|
||||
{
|
||||
if (!calledGet)
|
||||
{
|
||||
UniTaskScheduler.PublishUnobservedTaskException(exception.SourceException);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sealed class ExceptionResultSource<T> : IUniTaskSource<T>
|
||||
{
|
||||
readonly ExceptionDispatchInfo exception;
|
||||
bool calledGet;
|
||||
|
||||
public ExceptionResultSource(Exception exception)
|
||||
{
|
||||
@@ -232,12 +247,22 @@ namespace Cysharp.Threading.Tasks
|
||||
|
||||
public T GetResult(short token)
|
||||
{
|
||||
if (!calledGet)
|
||||
{
|
||||
calledGet = true;
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
exception.Throw();
|
||||
return default;
|
||||
}
|
||||
|
||||
void IUniTaskSource.GetResult(short token)
|
||||
{
|
||||
if (!calledGet)
|
||||
{
|
||||
calledGet = true;
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
exception.Throw();
|
||||
}
|
||||
|
||||
@@ -255,6 +280,14 @@ namespace Cysharp.Threading.Tasks
|
||||
{
|
||||
continuation(state);
|
||||
}
|
||||
|
||||
~ExceptionResultSource()
|
||||
{
|
||||
if (!calledGet)
|
||||
{
|
||||
UniTaskScheduler.PublishUnobservedTaskException(exception.SourceException);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sealed class CanceledResultSource : IUniTaskSource
|
||||
|
||||
Reference in New Issue
Block a user