com.github.bjoernpetersen.jmusicbot.platform.ContextSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of musicbot Show documentation
Show all versions of musicbot Show documentation
Core library of MusicBot, which plays music from various providers.
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