Java TimeUnit Calculate calculateTimeout(long timeout, TimeUnit timeUnit)

Here you can find the source of calculateTimeout(long timeout, TimeUnit timeUnit)

Description

calculate Timeout

License

Open Source License

Declaration

private static long calculateTimeout(long timeout, TimeUnit timeUnit) 

Method Source Code

//package com.java2s;
/*//from  w w  w  . j av  a2  s. c o m
 * Copyright (c) 2008-2016, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.concurrent.TimeUnit;

public class Main {
    private static long calculateTimeout(long timeout, TimeUnit timeUnit) {
        timeUnit = timeUnit == null ? TimeUnit.SECONDS : timeUnit;
        return timeUnit.toNanos(timeout);
    }
}

Related

  1. addTimeUnit(Calendar cal, int unit, int val)
  2. appendTimeout(StringBuilder b, long timeout, TimeUnit unit)
  3. between(final Calendar calendar1, final Calendar calendar2, final TimeUnit scale)
  4. calculateDateDiff(Date date1, Date date2, TimeUnit timeUnit)
  5. calculateDelatBasedOnRate(int rateLimit, TimeUnit periodUnit, int period, TimeUnit resultingTimeUnit)
  6. checkTime(long time, TimeUnit timeunit)
  7. checkTimeUnit(TimeUnit timeUnit)
  8. createEquidistantDates(Calendar reference, final int periods, final TimeUnit sampleUnit, final int sampleRate, Calendar calendar)
  9. dateDifference(Date date1, Date date2, TimeUnit timeUnit)