operationstate.java

来自「memcached JAVA客户端API,应用广泛,运行比较稳定。」· Java 代码 · 共 19 行

JAVA
19
字号
package net.spy.memcached.ops;/** * State of this operation. */public enum OperationState {	/**	 * State indicating this operation is writing data to the server.	 */	WRITING,	/**	 * State indicating this operation is reading data from the server.	 */	READING,	/**	 * State indicating this operation is complete.	 */	COMPLETE}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?