com.zpf.api.IStorageQueue Maven / Gradle / Ivy
package com.zpf.api;
/**
* Created by ZPF on 2019/1/24.
*/
public interface IStorageQueue {
IStorageQueue add(T name, Object value);
boolean commit();
}
package com.zpf.api;
/**
* Created by ZPF on 2019/1/24.
*/
public interface IStorageQueue {
IStorageQueue add(T name, Object value);
boolean commit();
}