Пример #1
0
 /**
  * Return the status of sending video with this CALL.
  *
  * @return videoStatus of this call.
  * @throws SkypeException when connection is bad.
  */
 public VideoStatus getSendVideoStatus() throws SkypeException {
   return VideoStatus.valueOf(getProperty("VIDEO_SEND_STATUS"));
 }
Пример #2
0
 /**
  * Return the status of receiving video with this CALL.
  *
  * @return videoStatus of this call.
  * @throws SkypeException when connection is bad.
  */
 public VideoStatus getReceiveVideoStatus() throws SkypeException {
   return VideoStatus.valueOf(getProperty("VIDEO_RECEIVE_STATUS"));
 }