All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uw.task.util.redis.msgpack.MsgpackKeySerializer Maven / Gradle / Ivy

Go to download

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 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