Java TimeUnit Calculate calculateDelatBasedOnRate(int rateLimit, TimeUnit periodUnit, int period, TimeUnit resultingTimeUnit)

Here you can find the source of calculateDelatBasedOnRate(int rateLimit, TimeUnit periodUnit, int period, TimeUnit resultingTimeUnit)

Description

calculate Delat Based On Rate

License

Apache License

Declaration

public static long calculateDelatBasedOnRate(int rateLimit, TimeUnit periodUnit, int period,
            TimeUnit resultingTimeUnit) 

Method Source Code

//package com.java2s;
/**//from  w w w.j  a  v  a2 s.  com
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 {
    public static long calculateDelatBasedOnRate(int rateLimit, TimeUnit periodUnit, int period,
            TimeUnit resultingTimeUnit) {
        return resultingTimeUnit.convert(period, periodUnit) / rateLimit;
    }
}

Related

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