All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nytimes.android.external.store3.base.Clearable Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
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