All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy