90 lines
2.6 KiB
C#
90 lines
2.6 KiB
C#
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
|
|
|
|
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Security;
|
|
|
|
namespace UniRx.Async.CompilerServices
|
|
{
|
|
public struct AsyncUniTaskVoidMethodBuilder
|
|
{
|
|
Action moveNext;
|
|
|
|
// 1. Static Create method.
|
|
[DebuggerHidden]
|
|
public static AsyncUniTaskVoidMethodBuilder Create()
|
|
{
|
|
var builder = new AsyncUniTaskVoidMethodBuilder();
|
|
return builder;
|
|
}
|
|
|
|
// 2. TaskLike Task property(void)
|
|
public UniTaskVoid Task => default(UniTaskVoid);
|
|
|
|
// 3. SetException
|
|
[DebuggerHidden]
|
|
public void SetException(Exception exception)
|
|
{
|
|
UniTaskScheduler.PublishUnobservedTaskException(exception);
|
|
}
|
|
|
|
// 4. SetResult
|
|
[DebuggerHidden]
|
|
public void SetResult()
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
// 5. AwaitOnCompleted
|
|
[DebuggerHidden]
|
|
public void AwaitOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine)
|
|
where TAwaiter : INotifyCompletion
|
|
where TStateMachine : IAsyncStateMachine
|
|
{
|
|
if (moveNext == null)
|
|
{
|
|
var runner = new MoveNextRunner<TStateMachine>();
|
|
moveNext = runner.Run;
|
|
runner.StateMachine = stateMachine; // set after create delegate.
|
|
}
|
|
|
|
awaiter.OnCompleted(moveNext);
|
|
}
|
|
|
|
// 6. AwaitUnsafeOnCompleted
|
|
[DebuggerHidden]
|
|
[SecuritySafeCritical]
|
|
public void AwaitUnsafeOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine)
|
|
where TAwaiter : ICriticalNotifyCompletion
|
|
where TStateMachine : IAsyncStateMachine
|
|
{
|
|
if (moveNext == null)
|
|
{
|
|
var runner = new MoveNextRunner<TStateMachine>();
|
|
moveNext = runner.Run;
|
|
runner.StateMachine = stateMachine; // set after create delegate.
|
|
}
|
|
|
|
awaiter.UnsafeOnCompleted(moveNext);
|
|
}
|
|
|
|
// 7. Start
|
|
[DebuggerHidden]
|
|
public void Start<TStateMachine>(ref TStateMachine stateMachine)
|
|
where TStateMachine : IAsyncStateMachine
|
|
{
|
|
stateMachine.MoveNext();
|
|
}
|
|
|
|
// 8. SetStateMachine
|
|
[DebuggerHidden]
|
|
public void SetStateMachine(IAsyncStateMachine stateMachine)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |