ProcessorResult getSendingData(int currentTime, int waitingAckId)

Source

ProcessorResult getSendingData(int currentTime, int waitingAckId){
  if (handler != null) {
    ProcessorResult rslt = handler.getSendingData(currentTime, waitingAckId);
    //handler = null;
    return rslt;
  }
  return null;
}