package com.bumptech.glide.load.data; import com.bumptech.glide.Priority; import com.bumptech.glide.load.DataSource; /* loaded from: classes.dex */ public interface DataFetcher { public interface DataCallback { void a(Exception exc); void a(T t); } Class a(); void a(Priority priority, DataCallback dataCallback); void b(); void cancel(); DataSource getDataSource(); }