com.openyelp.cache.RpcStringCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonrpc Show documentation
Show all versions of jsonrpc Show documentation
jsonrpc is a lightweight Rpc Framework
/**
* CopyRright (c)1985-2012:宝亿电子
* Project: jsonrpc
* Module ID:
* Comments:
* JDK version used:
* Namespace:package org.json.rpc.cache;
* Author:陈联高
* Create Date: 2012-11-26
* Modified By:ada.young
* Modified Date:2012-11-26
* Why & What is modified
* Version: 1.01
*/
package com.openyelp.cache;
public interface RpcStringCache {
public String get(String key);
public void put(String key,String value);
public void clearall();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy