mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-06-19 22:50:51 +08:00
21 lines
588 B
Java
21 lines
588 B
Java
/**
|
||
* 开源代码,仅供学习和交流研究使用,商用请联系三丙
|
||
* 微信:mohan_88888
|
||
* 抖音:程序员三丙
|
||
* 付费课程:https://www.bilibili.com/cheese/play/ss942400790
|
||
*/
|
||
package sanbing.jcpp.infrastructure.cache;
|
||
|
||
import org.springframework.data.redis.serializer.SerializationException;
|
||
import org.springframework.lang.Nullable;
|
||
|
||
public interface JCPPRedisSerializer<K, T> {
|
||
|
||
@Nullable
|
||
byte[] serialize(@Nullable T t) throws SerializationException;
|
||
|
||
@Nullable
|
||
T deserialize(K key, @Nullable byte[] bytes) throws SerializationException;
|
||
|
||
}
|