API reference
API reference
Select your platform
No SDKs available
No versions available

FOvrHttpTransferUpdate Struct

Represents an update to an HTTP transfer, which is a process of transferring data over the internet using the HTTP protocol. It provides a way for developers to monitor the progress of an HTTP transfer and can be retrieved using UOvrPlatformSubsystem::OnHTTPTransfer().

Constructors

FOvrHttpTransferUpdate ()
This is the default constructor for the struct, which initializes the ::ovrHttpTransferUpdateHandle and TOvrMessageHandlePtr to their default values.
Signature
FOvrHttpTransferUpdate::FOvrHttpTransferUpdate()
FOvrHttpTransferUpdate ( OvrHandle , MessageHandlePtr )
Copying values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
FOvrHttpTransferUpdate::FOvrHttpTransferUpdate(ovrHttpTransferUpdateHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrHttpTransferUpdateHandle
MessageHandlePtr: TOvrMessageHandlePtr

Fields

Bytes : TArray< uint8 >
An array of bytes that represents the data being transferred.
Signature
TArray<uint8> FOvrHttpTransferUpdate::Bytes
ID : FOvrId
It's a unique identifier for the HTTP transfer. It is used to track the progress of the transfer and can be retrieved using field FOvrMessage::RequestID.
Signature
FOvrId FOvrHttpTransferUpdate::ID
IsCompleted : bool
This field is a boolean value that indicates whether the HTTP transfer has been completed or not.
Signature
bool FOvrHttpTransferUpdate::IsCompleted

Member Functions

Clear ()
Setting all values to their defaults, effectively clearing the struct.
Signature
void FOvrHttpTransferUpdate::Clear()
Returns
void
Update ( OvrHandle , MessageHandlePtr )
Updating values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
void FOvrHttpTransferUpdate::Update(ovrHttpTransferUpdateHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrHttpTransferUpdateHandle
MessageHandlePtr: TOvrMessageHandlePtr
Returns
void