Examples of stopTreatment()


Examples of com.sun.mpk20.voicelib.app.Call.stopTreatment()

            //Our phone cell wants us to join the call into the world.
           
            if (listing.simulateCalls() == false) {
                //Stop any current ringing.
          try {
                    softphoneCall.stopTreatment("ring_tone.au");
          } catch (IOException e) {
        logger.fine("Unable to stop treatment to " + softphoneCall + ":  "
            + e.getMessage());
          }
View Full Code Here

Examples of com.sun.mpk20.voicelib.app.Call.stopTreatment()

        //Something's picked up, the call has been connected
        case CallStatus.ESTABLISHED:
            if (listing.isPrivate()) {
                //Stop playing the phone ringing sound
    try {
                    softphoneCall.stopTreatment("ring_tone.au");
          } catch (IOException e) {
        logger.warning("Unable to stop treatment " + softphoneCall + ":  "
            + e.getMessage());
          }
            }
View Full Code Here

Examples of com.sun.mpk20.voicelib.app.Call.stopTreatment()

      vm.removeCallStatusListener(this);

            //Stop the ringing
      if (softphoneCall != null) {
          try {
                    softphoneCall.stopTreatment("ring_tone.au");
          } catch (IOException e) {
        logger.warning(
      "Unable to stop treatment " + softphoneCall + ":  "
          + e.getMessage());
          }
View Full Code Here

Examples of com.sun.mpk20.voicelib.app.Call.stopTreatment()

        //Stop the ringing
  Call softphoneCall = vm.getCall(presenceInfo.getCallID());

  if (softphoneCall != null) {
      try {
                softphoneCall.stopTreatment("ring_tone.au");
      } catch (IOException e) {
    logger.warning("Unable to stop treatment " + softphoneCall + ":  "
        + e.getMessage());
      }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.