示例#1
0
  /**
   * Returns true if it is possible to pause this file transfer right now, else returns false. If
   * this filetransfer corresponds to a file transfer that is no longer present in the persistent
   * storage false will be returned (this is no error)
   *
   * @return boolean
   * @throws RcsGenericException
   */
  public boolean isAllowedToPauseTransfer() throws RcsGenericException {
    try {
      return mTransferInf.isAllowedToPauseTransfer();

    } catch (Exception e) {
      throw new RcsGenericException(e);
    }
  }