AliVCSDK  6.0.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
AlivcLivePushMonitorLevel.java
1 package com.alivc.live.pusher;
2 
3 
12 @Visible
14 
20  ALL(0),
21 
27  CUT(1),
28 
32  NONE(2),
33 
34  ;
35 
36  private final int level;
37 
43  public int getLevel() {
44  return level;
45  }
46 
47  AlivcLivePushMonitorLevel(int level) {
48  this.level = level;
49  }
50 }