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

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

The newest version!
//
//
// 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 AnaStats {
    public AnaStats() {
    }

    public AnaStats(int bitrateActionCounter, int channelActionCounter, int dtxActionCounter, int fecActionCounter,
            int frameLengthIncreaseCounter, int frameLengthDecreaseCounter, float uplinkPacketLossFraction) {
        this.bitrateActionCounter = bitrateActionCounter;
        this.channelActionCounter = channelActionCounter;
        this.dtxActionCounter = dtxActionCounter;
        this.fecActionCounter = fecActionCounter;
        this.frameLengthIncreaseCounter = frameLengthIncreaseCounter;
        this.frameLengthDecreaseCounter = frameLengthDecreaseCounter;
        this.uplinkPacketLossFraction = uplinkPacketLossFraction;
    }

    private int bitrateActionCounter;

    public int getBitrateActionCounter() {
        return this.bitrateActionCounter;
    }

    public void setBitrateActionCounter(int bitrateActionCounter) {
        this.bitrateActionCounter = bitrateActionCounter;
    }

    private int channelActionCounter;

    public int getChannelActionCounter() {
        return this.channelActionCounter;
    }

    public void setChannelActionCounter(int channelActionCounter) {
        this.channelActionCounter = channelActionCounter;
    }

    private int dtxActionCounter;

    public int getDtxActionCounter() {
        return this.dtxActionCounter;
    }

    public void setDtxActionCounter(int dtxActionCounter) {
        this.dtxActionCounter = dtxActionCounter;
    }

    private int fecActionCounter;

    public int getFecActionCounter() {
        return this.fecActionCounter;
    }

    public void setFecActionCounter(int fecActionCounter) {
        this.fecActionCounter = fecActionCounter;
    }

    private int frameLengthIncreaseCounter;

    public int getFrameLengthIncreaseCounter() {
        return this.frameLengthIncreaseCounter;
    }

    public void setFrameLengthIncreaseCounter(int frameLengthIncreaseCounter) {
        this.frameLengthIncreaseCounter = frameLengthIncreaseCounter;
    }

    private int frameLengthDecreaseCounter;

    public int getFrameLengthDecreaseCounter() {
        return this.frameLengthDecreaseCounter;
    }

    public void setFrameLengthDecreaseCounter(int frameLengthDecreaseCounter) {
        this.frameLengthDecreaseCounter = frameLengthDecreaseCounter;
    }

    private float uplinkPacketLossFraction;

    public float getUplinkPacketLossFraction() {
        return this.uplinkPacketLossFraction;
    }

    public void setUplinkPacketLossFraction(float uplinkPacketLossFraction) {
        this.uplinkPacketLossFraction = uplinkPacketLossFraction;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy