Here you can find the source of minutesSince(final long startNanos)
public static long minutesSince(final long startNanos)
//package com.java2s; //License from project: Apache License import java.util.concurrent.TimeUnit; public class Main { public static long minutesSince(final long startNanos) { return timeSince(startNanos, TimeUnit.MINUTES); }//from w w w . j av a2 s . c o m public static long timeSince(final long startNanos, final TimeUnit destUnit) { return destUnit.convert(System.nanoTime() - startNanos, TimeUnit.NANOSECONDS); } }