throw new RuntimeException(e);
}
long timestamp = System.currentTimeMillis();
List<String> deltas = makeDeltas(timestamp, requireParameter(req, "operations"));
ServerMutateRequest mutateRequest = new ServerMutateRequestGsonImpl();
mutateRequest.setSession(ObjectSessionHelper.protoFromObjectSession(session));
mutateRequest.setVersion(version);
mutateRequest.addAllPayload(deltas);
MutateResult res;
try {
res = storeSelector.get(session.getStoreType()).getSlobStore().mutateObject(mutateRequest);
} catch (SlobNotFoundException e) {