All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.UDPAckAck Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water;

/**
 * A task initiator has his response, we can quit sending him ACKs.
 *
 * @author 
 * @version 1.0
 */

class UDPAckAck extends UDP {
  // Received an ACKACK for a remote Task.  Drop the task tracking
  @Override AutoBuffer call(AutoBuffer ab) {
    ab._h2o.remove_task_tracking(ab.getTask());
    return ab;
  }

  // Pretty-print bytes 1-15; byte 0 is the udp_type enum
  @Override String print16( AutoBuffer ab ) { return "task# "+ab.getTask(); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy