NewPipe-app-android/app/src/main/java/org/schabi/newpipe/player/resolver/Resolver.java

10 lines
225 B
Java

package org.schabi.newpipe.player.resolver;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public interface Resolver<Source, Product> {
@Nullable
Product resolve(@NonNull Source source);
}