io.tarantool.driver.mappers.converters.object.DefaultByteArrayToBinaryValueConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cartridge-driver Show documentation
Show all versions of cartridge-driver Show documentation
Tarantool Cartridge driver for Tarantool versions 1.10+ based on Netty framework
package io.tarantool.driver.mappers.converters.object;
import io.tarantool.driver.mappers.converters.ObjectConverter;
import org.msgpack.value.BinaryValue;
import org.msgpack.value.ValueFactory;
/**
* Default {@code byte[]} to {@link BinaryValue} converter
*
* @author Alexey Kuzin
* @author Artyom Dubinin
*/
public class DefaultByteArrayToBinaryValueConverter implements ObjectConverter {
private static final long serialVersionUID = 20220418L;
@Override
public BinaryValue toValue(byte[] object) {
return ValueFactory.newBinary(object);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy