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

com.carrotsearch.ant.tasks.junit4.events.LowLevelHeartBeatEvent Maven / Gradle / Ivy

The newest version!
package com.carrotsearch.ant.tasks.junit4.events;

/**
 * Heartbeat for reporting long running tests.
 */
public class LowLevelHeartBeatEvent {
  public final long lastActivity, currentTime;
  
  public LowLevelHeartBeatEvent(long last, long currentTime) {
    this.lastActivity = last;
    this.currentTime = currentTime;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy