*/
public ClResultCode append(String namespace, String set, Object key,
String binName, Object value, ClOptions opts,
ClWriteOptions wOpts) {
try {
super.append(getWritePolicy(opts, wOpts), new Key(namespace, set, Value.get(key)), new Bin(binName, value));
return ClResultCode.OK;
}
catch (AerospikeException ae) {
return getResultCode(ae);
}