using System; using System.Threading.Tasks; namespace LobbyRelaySample { /// /// 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. /// 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(Task task, Action 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); } }