io.tarantool.driver.mappers.converters.value.defaults.DefaultBinaryValueToByteArrayConverter 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.value.defaults;
import io.tarantool.driver.mappers.converters.ValueConverter;
import org.msgpack.value.BinaryValue;
/**
* Default {@link BinaryValue} to {@code byte[]} converter
*
* @author Alexey Kuzin
* @author Artyom Dubinin
*/
public class DefaultBinaryValueToByteArrayConverter implements ValueConverter {
private static final long serialVersionUID = 20220418L;
@Override
public byte[] fromValue(BinaryValue value) {
return value.asByteArray();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy