You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Added the MaxTimeToWaitInQueue stat in HttpStats. #jira UE-204405 [REVIEW] [at]michael.kirzinger [at]michael.atchison [at]rafa.lecina [at]alejandro.aguilar #rb alejandro.aguilar, michael.atchison, Rafa.Lecina [CL 31441575 by lorry li in ue5-main branch]
22 lines
506 B
C++
22 lines
506 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GenericPlatform/HttpRequestCommon.h"
|
|
|
|
class IHttpThreadedRequest : public FHttpRequestCommon
|
|
{
|
|
public:
|
|
// Called on http thread
|
|
virtual bool StartThreadedRequest() = 0;
|
|
virtual bool IsThreadedRequestComplete() = 0;
|
|
virtual void TickThreadedRequest(float DeltaSeconds) = 0;
|
|
|
|
void StartWaitingInQueue();
|
|
float GetTimeStartedWaitingInQueue() const;
|
|
|
|
public:
|
|
float TimeStartedWaitingInQueue = 0.0f;
|
|
};
|