Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.kickflip.sdk.event; /* ww w .j a va2s.c om*/ /** * Created by davidbrodsky on 1/28/14. */ public interface UploadEvent { /** * Get the destination Url of this upload. */ public String getDestinationUrl(); /** * Returns the rate of the upload * @return the rate of the completed upload * in bytes per second. */ public int getUploadByteRate(); }