
com.nytimes.android.external.store.base.Clearable Maven / Gradle / Ivy
package com.nytimes.android.external.store.base;
import javax.annotation.Nonnull;
/**
* Persisters should implement Clearable if they want store.clear(key) to also clear the persister
* @param Type of key/request param in store
*/
public interface Clearable {
void clear(@Nonnull T key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy