statsoperation.java
来自「memcached JAVA客户端API,应用广泛,运行比较稳定。」· Java 代码 · 共 22 行
JAVA
22 行
package net.spy.memcached.ops;/** * Stats fetching operation. */public interface StatsOperation extends Operation { /** * Callback for stats operation. */ interface Callback extends OperationCallback { /** * Invoked once for every stat returned from the server. * * @param name the name of the stat * @param val the stat value. */ void gotStat(String name, String val); } // nothing}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?