
com.nytimes.android.external.store3.base.Clearable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of store3 Show documentation
Show all versions of store3 Show documentation
Store3 is built with RxJava2
package com.nytimes.android.external.store3.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