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

com.github.bjoernpetersen.jmusicbot.platform.ContextSupplier Maven / Gradle / Ivy

There is a newer version: 0.25.0
Show newest version
package com.github.bjoernpetersen.jmusicbot.platform;

import android.content.Context;
import javax.annotation.Nonnull;

/**
 * Supplies an android application context.
 */
@FunctionalInterface
public interface ContextSupplier {

  /**
   * Gets the application context of the currently running Android app.
   *
   * @return a {@link Context}
   */
  @Nonnull
  Context supply();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy