javastrava.api.v3.service.async.AsyncCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javastrava-api Show documentation
Show all versions of javastrava-api Show documentation
Java implementation of the Strava API
package javastrava.api.v3.service.async;
/**
* @author Dan Shannon
*
* @param The type of object returned by the callback's {@link #run()} method
*/
public interface AsyncCallback {
/**
* @return A T
*/
public T run();
}