Initial commit
This commit is contained in:
22
sources/com/bumptech/glide/load/engine/cache/DiskCache.java
vendored
Normal file
22
sources/com/bumptech/glide/load/engine/cache/DiskCache.java
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
package com.bumptech.glide.load.engine.cache;
|
||||
|
||||
import com.bumptech.glide.load.Key;
|
||||
import java.io.File;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface DiskCache {
|
||||
|
||||
public interface Factory {
|
||||
DiskCache build();
|
||||
}
|
||||
|
||||
public interface Writer {
|
||||
boolean a(File file);
|
||||
}
|
||||
|
||||
File a(Key key);
|
||||
|
||||
void a(Key key, Writer writer);
|
||||
|
||||
void clear();
|
||||
}
|
||||
Reference in New Issue
Block a user