Package com.logica.smpp.pdu

Examples of com.logica.smpp.pdu.SubmitSMResp.debugString()


   *               a {@link com.logica.smpp.pdu.SubmitSMResp} PDU.
   */
  protected void handleSubmitResponseEvent (ServerPDUEvent event)
  {
    SubmitSMResp pdu = (SubmitSMResp)(event.getPDU ());
    myLog.debug ("handleSubmitResponseEvent - async request: {}", pdu.debugString ());

    synchronized (mySubmitResponseEvents) {
      mySubmitResponseEvents.enqueue (event);
      mySubmitResponseEvents.notify ();
    }
View Full Code Here


          long start = System.currentTimeMillis();
        response = this.session.submit(request);
        if(response != null) {
          long stop = System.currentTimeMillis();
          info.setTransactionTime(stop - start);
          logger.info("MT response " + response.debugString() +
          " for src: " + request.getSourceAddr().getAddress() +
          " dstn: " + request.getDestAddr().getAddress() +
          " seqNum: " + request.getSequenceNumber());
          callMTListeners(info, response);
          ret = true;
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.