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

com.jeesuite.kafka.serializer.ZKStringSerializer Maven / Gradle / Ivy

package com.jeesuite.kafka.serializer;

import org.I0Itec.zkclient.exception.ZkMarshallingError;
import org.I0Itec.zkclient.serialize.ZkSerializer;

public class ZKStringSerializer implements ZkSerializer{

	private String encoding = "UTF8";
	@Override
	public byte[] serialize(Object data) throws ZkMarshallingError {
		return data.toString().getBytes();
	}

	@Override
	public Object deserialize(byte[] bytes) throws ZkMarshallingError {
		return new String(bytes);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy