mirror of https://github.com/ppy/osu
Merge pull request #8810 from peppy/fix-web-request-result
Fix inline executions of APIRequest.Perform not getting result populated early enough
This commit is contained in:
commit
ea77fc222d
|
@ -18,24 +18,32 @@ public abstract class APIRequest<T> : APIRequest where T : class
|
|||
|
||||
public T Result { get; private set; }
|
||||
|
||||
protected APIRequest()
|
||||
{
|
||||
base.Success += () => TriggerSuccess(((OsuJsonWebRequest<T>)WebRequest)?.ResponseObject);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invoked on successful completion of an API request.
|
||||
/// This will be scheduled to the API's internal scheduler (run on update thread automatically).
|
||||
/// </summary>
|
||||
public new event APISuccessHandler<T> Success;
|
||||
|
||||
protected override void PostProcess()
|
||||
{
|
||||
base.PostProcess();
|
||||
Result = ((OsuJsonWebRequest<T>)WebRequest)?.ResponseObject;
|
||||
}
|
||||
|
||||
internal void TriggerSuccess(T result)
|
||||
{
|
||||
if (Result != null)
|
||||
throw new InvalidOperationException("Attempted to trigger success more than once");
|
||||
|
||||
Result = result;
|
||||
Success?.Invoke(result);
|
||||
|
||||
TriggerSuccess();
|
||||
}
|
||||
|
||||
internal override void TriggerSuccess()
|
||||
{
|
||||
base.TriggerSuccess();
|
||||
Success?.Invoke(Result);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -99,6 +107,8 @@ public void Perform(IAPIProvider api)
|
|||
if (checkAndScheduleFailure())
|
||||
return;
|
||||
|
||||
PostProcess();
|
||||
|
||||
API.Schedule(delegate
|
||||
{
|
||||
if (cancelled) return;
|
||||
|
@ -107,7 +117,14 @@ public void Perform(IAPIProvider api)
|
|||
});
|
||||
}
|
||||
|
||||
internal void TriggerSuccess()
|
||||
/// <summary>
|
||||
/// Perform any post-processing actions after a successful request.
|
||||
/// </summary>
|
||||
protected virtual void PostProcess()
|
||||
{
|
||||
}
|
||||
|
||||
internal virtual void TriggerSuccess()
|
||||
{
|
||||
Success?.Invoke();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue