toRtmpCacheFullBehavior method

RtmpCacheFullBehavior toRtmpCacheFullBehavior()

Implementation

RtmpCacheFullBehavior toRtmpCacheFullBehavior() {
  switch (this) {
    case 'DISCONNECT_IMMEDIATELY':
      return RtmpCacheFullBehavior.disconnectImmediately;
    case 'WAIT_FOR_SERVER':
      return RtmpCacheFullBehavior.waitForServer;
  }
  throw Exception('$this is not known in enum RtmpCacheFullBehavior');
}