mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: MediaEndpoint AtomicInteger for stats not found error
parent
60fca4021c
commit
19a7c778da
|
@ -23,6 +23,7 @@ import java.util.Queue;
|
|||
import java.util.concurrent.ConcurrentLinkedQueue;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.kurento.client.BaseRtpEndpoint;
|
||||
import org.kurento.client.Continuation;
|
||||
|
@ -93,6 +94,7 @@ public abstract class MediaEndpoint {
|
|||
public String selectedRemoteIceCandidate;
|
||||
public Queue<KmsEvent> kmsEvents = new ConcurrentLinkedQueue<>();
|
||||
public Future<?> kmsWebrtcStatsThread;
|
||||
public AtomicInteger statsNotFoundErrors = new AtomicInteger(0);
|
||||
|
||||
/**
|
||||
* Constructor to set the owner, the endpoint's name and the media pipeline.
|
||||
|
|
Loading…
Reference in New Issue