openvidu-server: Kms#getNumberOfRecordings

pull/609/head
pabloFuente 2021-02-18 09:43:25 +01:00
parent a35b8399a4
commit 396b620e04
1 changed files with 4 additions and 0 deletions

View File

@ -270,6 +270,10 @@ public class Kms {
.reduce(0, Integer::sum); .reduce(0, Integer::sum);
} }
public int getNumberOfRecordings() {
return this.activeRecordings.size();
}
public int getNumberOfComposedRecordings() { public int getNumberOfComposedRecordings() {
return this.activeComposedRecordings.intValue(); return this.activeComposedRecordings.intValue();
} }