godot/modules/mono/glue/Managed/Files/SignalAwaiter.cs
Ignacio Etcheverry 995a40e8ef Move modules/mono/glue/cs_files to modules/mono/glue/Managed/Files
Added dummy MSBuild project and solution to get tooling help when editing these files.
2018-09-12 22:03:36 +02:00

61 lines
1.4 KiB
C#

using System;
using System.Runtime.CompilerServices;
namespace Godot
{
public class SignalAwaiter : IAwaiter<object[]>, IAwaitable<object[]>
{
private bool completed;
private object[] result;
private Action action;
public SignalAwaiter(Object source, string signal, Object target)
{
godot_icall_SignalAwaiter_connect(Object.GetPtr(source), signal, Object.GetPtr(target), this);
}
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern static Error godot_icall_SignalAwaiter_connect(IntPtr source, string signal, IntPtr target, SignalAwaiter awaiter);
public bool IsCompleted
{
get
{
return completed;
}
}
public void OnCompleted(Action action)
{
this.action = action;
}
public object[] GetResult()
{
return result;
}
public IAwaiter<object[]> GetAwaiter()
{
return this;
}
internal void SignalCallback(object[] args)
{
completed = true;
result = args;
if (action != null)
{
action();
}
}
internal void FailureCallback()
{
action = null;
completed = true;
}
}
}