您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
48 行
1.8 KiB
48 行
1.8 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LobbyRelaySample
|
|
{
|
|
/// <summary>
|
|
/// Both Lobby and Relay have need for asynchronous requests with some basic safety wrappers. This is a shared place for that.
|
|
/// This will also permit parsing incoming exceptions for any service-specific errors that should be displayed to the player.
|
|
/// </summary>
|
|
public abstract class AsyncRequest
|
|
{
|
|
public async void DoRequest(Task task, Action onComplete)
|
|
{
|
|
string currentTrace = System.Environment.StackTrace; // For debugging. If we don't get the calling context here, it's lost once the async operation begins.
|
|
try
|
|
{ await task;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
ParseServiceException(e);
|
|
Exception eFull = new Exception($"Call stack before async call:\n{currentTrace}\n", e); // TODO: Are we still missing Relay exceptions after the update?
|
|
throw eFull;
|
|
}
|
|
finally
|
|
{ onComplete?.Invoke();
|
|
}
|
|
}
|
|
public async void DoRequest<T>(Task<T> task, Action<T> onComplete)
|
|
{
|
|
T result = default;
|
|
string currentTrace = System.Environment.StackTrace;
|
|
try
|
|
{ result = await task;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
ParseServiceException(e);
|
|
Exception eFull = new Exception($"Call stack before async call:\n{currentTrace}\n", e);
|
|
throw eFull;
|
|
}
|
|
finally
|
|
{ onComplete?.Invoke(result);
|
|
}
|
|
}
|
|
|
|
protected abstract void ParseServiceException(Exception e);
|
|
}
|
|
}
|