Example #1
0
  /**
   * Terminates a call.
   *
   * @see Listener#callSessionTerminated
   */
  public void terminate(int reason) {
    if (mClosed) {
      return;
    }

    try {
      miSession.terminate(reason);
    } catch (RemoteException e) {
    }
  }