getSendingData method

ProcessorResult? getSendingData(
  1. int currentTime,
  2. int waitingAckId
)

Implementation

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