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

jio.time.CustomClock Maven / Gradle / Ivy

The newest version!
package jio.time;

import java.util.function.Supplier;

record CustomClock(Supplier time) implements Clock {

  @Override
  public Long get() {
    return time.get();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy