operationcallback.java

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

JAVA
22
字号
// Copyright (c) 2006  Dustin Sallings <dustin@spy.net>package net.spy.memcached.ops;/** * Callback that's invoked with the response of an operation. */public interface OperationCallback {	/**	 * Method invoked with the status when the operation is complete.	 *	 * @param line the line containing the final status of the operation	 */	void receivedStatus(OperationStatus status);	/**	 * Called whenever an operation completes.	 */	void complete();}

⌨️ 快捷键说明

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