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

org.eclipse.jetty.nosql.memcached.xmemcached.NullTranscoder Maven / Gradle / Ivy

package org.eclipse.jetty.nosql.memcached.xmemcached;

import net.rubyeye.xmemcached.transcoders.CachedData;
import net.rubyeye.xmemcached.transcoders.PrimitiveTypeTranscoder;

public class NullTranscoder extends PrimitiveTypeTranscoder {
	private static final int flags = 0;

	public CachedData encode(byte[] bs) {
		return new CachedData(flags, bs);
	}

	public byte[] decode(CachedData d) {
		if (d == null) {
			return null;
		}
		return d.getData();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy