View Javadoc

1   package ch.qos.logback.access.filter;
2   
3   import ch.qos.logback.core.util.TimeUtil;
4   
5   public class StatsByMonth extends PeriodicStats {
6   
7     StatsByMonth() {
8       super();
9     }
10    
11    StatsByMonth(long now) {
12      super(now);
13    }
14    
15    @Override
16    long computeStartOfNextPeriod(long now) {
17      return TimeUtil.computeStartOfNextMonth(now);
18    }
19    
20  }