📄 transcoder.java
字号:
// Copyright (c) 2006 Dustin Sallings <dustin@spy.net>package net.spy.memcached.transcoders;import net.spy.memcached.CachedData;/** * Transcoder is an interface for classes that convert between byte arrays and * objects for storage in the cache. */public interface Transcoder<T> { /** * Encode the given object for storage. * * @param o the object * @return the CachedData representing what should be sent */ CachedData encode(T o); /** * Decode the cached object into the object it represents. * * @param d the data * @return the return value */ T decode(CachedData d);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -