Package com.logica.smpp.pdu

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


    if (response == null) {
      return SmppMessageStateType.eUnknown;
    }
    else {
      myLog.debug ("query - received response: {}", response.debugString ());
      return SmppMessageStateType.decode (response.getMessageState ());
    }
  }
}
View Full Code Here


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

    synchronized (myQueryResponseEvents) {
      myQueryResponseEvents.enqueue (event);
      myQueryResponseEvents.notify ();
    }
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.