uw.task.util.redis.msgpack.MsgpackKeySerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uw-task Show documentation
Show all versions of uw-task Show documentation
uw-task包是一个分布式任务框架,通过uw-task可以快速构建基于docker的分布式任务体系,同时支持基于influx的任务运维监控。
The newest version!
package uw.task.util.redis.msgpack;
import org.springframework.data.redis.serializer.SerializationException;
public class MsgpackKeySerializer extends MsgpackSerializer {
public MsgpackKeySerializer(Class extends MsgpackData> type) {
super(type);
}
@Override
public byte[] serialize(T msg) throws SerializationException {
return super.serialize(msg);
}
@Override
public T deserialize(byte[] data) throws SerializationException {
return super.deserialize(data);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy