Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
void upsert(@Nullable Transaction tx, @NotNull R rec);

CompletableFuture<Void> upsertAsync(@Nullable Transaction tx, @NotNull R rec);

In other cases, only async variant may be present, but it should have the async  suffix anyway.

...