@epicgames-ps/lib-pixelstreamingfrontend-ue5.3
Version:
Frontend library for Unreal Engine 5.3 Pixel Streaming
18 lines (16 loc) • 417 B
text/typescript
// Copyright Epic Games, Inc. All Rights Reserved.
/**
* ICE Candidate Pair Stats collected from the RTC Stats Report
*/
export class CandidatePairStats {
bytesReceived: number;
bytesSent: number;
localCandidateId: string;
remoteCandidateId: string;
nominated: boolean;
readable: boolean;
writable: boolean;
selected: boolean;
state: string;
currentRoundTripTime: number;
}