Map<String, Object> bins, ClOptions opts, ClWriteOptions wOpts) {
Operation[] operations = new Operation[bins.size() + 1];
int count = 0;
for (Entry<String,Object> entry : bins.entrySet()) {
operations[count++] = Operation.add(new Bin(entry.getKey(), entry.getValue()));
}
operations[count] = Operation.get();
try {
Record record = super.operate(getWritePolicy(opts, wOpts), new Key(namespace, set, Value.get(key)), operations);