Skip to content

Commit

Permalink
refactor: 增加newInstanceNow方法
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou-hao committed Dec 4, 2024
1 parent 482f967 commit 41f6f4c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ public Mono<E> newInstance() {
return Mono.fromSupplier(wrapper::newRowInstance);
}

@Override
public E newInstanceNow() {
return wrapper.newRowInstance();
}

@Override
public Mono<E> findById(Mono<K> primaryKey) {
return primaryKey
Expand Down

0 comments on commit 41f6f4c

Please sign in to comment.