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

com.zpf.api.IStorageManager Maven / Gradle / Ivy

package com.zpf.api;

import androidx.annotation.NonNull;

/**
 * Created by ZPF on 2019/1/24.
 */
public interface IStorageManager {

    boolean save(N name, Object value);

    boolean remove(N name);

     T find(N key, @NonNull Class cls);

     T find(N key, @NonNull T defValue);

    void clear();

    IStorageQueue createQueue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy