📄 statsoperation.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -