use of com.torodb.mongodb.language.update.UpdatedToroDocumentBuilder in project torodb by torodb.
the class UpdateImplementation method update.
protected KvDocument update(UpdateAction updateAction, ToroDocument candidate) throws UpdateException {
UpdatedToroDocumentBuilder builder = UpdatedToroDocumentBuilder.from(candidate);
updateAction.apply(builder);
return builder.build();
}
Aggregations