25 lines
442 B
Java
25 lines
442 B
Java
package com.bumptech.glide.load.data;
|
|
|
|
import com.bumptech.glide.Priority;
|
|
import com.bumptech.glide.load.DataSource;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface DataFetcher<T> {
|
|
|
|
public interface DataCallback<T> {
|
|
void a(Exception exc);
|
|
|
|
void a(T t);
|
|
}
|
|
|
|
Class<T> a();
|
|
|
|
void a(Priority priority, DataCallback<? super T> dataCallback);
|
|
|
|
void b();
|
|
|
|
void cancel();
|
|
|
|
DataSource getDataSource();
|
|
}
|