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

com.nytimes.android.external.fs.PathResolver Maven / Gradle / Ivy

package com.nytimes.android.external.fs;


import javax.annotation.Nonnull;

/**
 * PathResolver will be used in creating file system paths based on cache keys.
 * Make sure to have keys containing same data resolve to same "path"
 *
 * @param  Store key/request param type
 */
public interface PathResolver {

    @Nonnull
    String resolve(@Nonnull T key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy