![JAR search and dependency download from the Maven repository](/logo.png)
net.java.trueupdate.artifact.maven.TransferRate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trueupdate-artifact-maven Show documentation
Show all versions of trueupdate-artifact-maven Show documentation
Provides an artifact resolver which is based on a local Maven
repository and some optional remote Maven repositories.
The newest version!
/*
* Copyright (C) 2013 Schlichtherle IT Services & Stimulus Software.
* All rights reserved. Use is subject to license terms.
*/
package net.java.trueupdate.artifact.maven;
import java.util.Locale;
import javax.annotation.concurrent.Immutable;
/**
* A value object which represents a human readable string for the number of
* bytes transferred per second.
*
* @author Christian Schlichtherle
*/
@Immutable
class TransferRate extends TransferSize {
private static final long serialVersionUID = 0L;
/**
* Constructs a transfer rate.
*
* @param sizeBytes the number of transferred bytes.
* @param durationMillis the duration of the transfer in milliseconds.
*/
public TransferRate(final long sizeBytes, final long durationMillis) {
super(sizeBytes * 1000 / Math.max(1, durationMillis));
if (0 > sizeBytes) throw new IllegalArgumentException();
if (0 > durationMillis) throw new IllegalArgumentException();
}
/**
* Returns a human readable string representation of the number of bytes
* transferred per second.
*/
@Override public String toString(Locale locale) {
return super.toString(locale) + "/second";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy