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

com.github.edgar615.util.vertx.wheel.ScheduledTask Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
package com.github.edgar615.util.vertx.wheel;

import java.util.concurrent.atomic.AtomicInteger;

/**
 * Created by edgar on 17-3-19.
 */
public class ScheduledTask {

  /**
   * 任务ID
   */
  private final int id;

  /**
   * 时间轮每走过一圈,cycelNum减1
   */
  private final AtomicInteger cycleNum;

  public ScheduledTask(int id, int cycleNum) {
    this.id = id;
    this.cycleNum = new AtomicInteger(cycleNum);
  }

  public int id() {
    return id;
  }

  public int cycleNum() {
    return cycleNum.get();
  }

  public int dec() {
    return this.cycleNum.getAndDecrement();
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;

    ScheduledTask task = (ScheduledTask) o;

    if (id != task.id) return false;

    return true;
  }

  @Override
  public int hashCode() {
    return id;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy