All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.main.java.io.agora.rtc.LastmileProbeResult Maven / Gradle / Ivy

//
//
// Agora Media SDK
// Copyright (c) 2020 Agora IO. All rights reserved.
// This file is generated by tool, do NOT modify it
//
//
package io.agora.rtc;

public class LastmileProbeResult {
    public LastmileProbeResult() {
    }

    public LastmileProbeResult(int state, LastmileProbeOneWayResult uplinkReport,
            LastmileProbeOneWayResult downlinkReport, int rtt) {
        this.state = state;
        this.uplinkReport = uplinkReport;
        this.downlinkReport = downlinkReport;
        this.rtt = rtt;
    }

    private int state;

    public int getState() {
        return this.state;
    }

    public void setState(int state) {
        this.state = state;
    }

    private LastmileProbeOneWayResult uplinkReport;

    public LastmileProbeOneWayResult getUplinkReport() {
        return this.uplinkReport;
    }

    public void setUplinkReport(LastmileProbeOneWayResult uplinkReport) {
        this.uplinkReport = uplinkReport;
    }

    private LastmileProbeOneWayResult downlinkReport;

    public LastmileProbeOneWayResult getDownlinkReport() {
        return this.downlinkReport;
    }

    public void setDownlinkReport(LastmileProbeOneWayResult downlinkReport) {
        this.downlinkReport = downlinkReport;
    }

    private int rtt;

    public int getRtt() {
        return this.rtt;
    }

    public void setRtt(int rtt) {
        this.rtt = rtt;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy