View Javadoc
1   package com.github.davidmoten.aws.lw.client.internal;
2   
3   @FunctionalInterface
4   public interface Clock {
5   
6       long time();
7       
8       Clock DEFAULT = new ClockDefault();
9   }