io.featurehub.client.ObjectSupplier Maven / Gradle / Ivy
package io.featurehub.client;
/**
* We are using this instead of Supplier because Android 21 does not support Supplier.
* @param
*/
public interface ObjectSupplier {
/**
* Gets a result.
*
* @return a result
*/
T get();
}