📄 versionoperationimpl.java
字号:
package net.spy.memcached.protocol.binary;import net.spy.memcached.ops.OperationCallback;import net.spy.memcached.ops.OperationStatus;import net.spy.memcached.ops.VersionOperation;class VersionOperationImpl extends OperationImpl implements VersionOperation { private static final int CMD = 11; public VersionOperationImpl(OperationCallback cb) { super(CMD, generateOpaque(), cb); } @Override public void initialize() { prepareBuffer("", 0, EMPTY_BYTES); } @Override protected void decodePayload(byte[] pl) { getCallback().receivedStatus(new OperationStatus(true, new String(pl))); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -