* @param event The {@link com.logica.smpp.ServerPDUEvent} should contain
* 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 ();
}