package com.bumptech.glide.load.engine; import com.bumptech.glide.load.Encoder; import com.bumptech.glide.load.Options; import com.bumptech.glide.load.engine.cache.DiskCache; import java.io.File; /* loaded from: classes.dex */ class DataCacheWriter implements DiskCache.Writer { private final Encoder a; private final DataType b; private final Options c; DataCacheWriter(Encoder encoder, DataType datatype, Options options) { this.a = encoder; this.b = datatype; this.c = options; } @Override // com.bumptech.glide.load.engine.cache.DiskCache.Writer public boolean a(File file) { return this.a.a(this.b, file, this.c); } }