Package com.logica.smpp.pdu

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


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

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