Skip to content

Commit

Permalink
Merge pull request #410 from gwenneg/fix-deferred-javadoc
Browse files Browse the repository at this point in the history
Fix UniCreate.deferred Javadoc
  • Loading branch information
cescoffier authored Dec 27, 2020
2 parents 044957b + 1532e3a commit a1597e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ private <S> void invokeOnce(AtomicBoolean once, AtomicReference<S> container, Su
* {@link UniSubscriber}. The supplier is called at subscription time.
* <p>
* In practice, it defers the {@link Uni} creation at subscription time and allows each subscriber to get different
* {@link Uni}. So, it does not create the {@link Uni} until an {@link UniSubscriber subscriber} subscribes, and
* {@link Uni}. So, it does not create the {@link Uni} until a {@link UniSubscriber subscriber} subscribes, and
* creates a fresh {@link Uni} for each subscriber.
* <p>
* Unlike {@link #item(Supplier)}, the supplier produces an {@link Uni} (and not an item).
Expand All @@ -398,7 +398,7 @@ public <T> Uni<T> deferred(Supplier<Uni<? extends T>> supplier) {
* {@link UniSubscriber}. The supplier is called at subscription time.
* <p>
* In practice, it defers the {@link Uni} creation at subscription time and allows each subscriber to get different
* {@link Uni}. So, it does not create the {@link Uni} until an {@link UniSubscriber subscriber} subscribes, and
* {@link Uni}. So, it does not create the {@link Uni} until a {@link UniSubscriber subscriber} subscribes, and
* creates a fresh {@link Uni} for each subscriber.
* <p>
* Unlike {@link #item(Supplier)}, the supplier produces an {@link Uni} (and not an item).
Expand Down

0 comments on commit a1597e7

Please sign in to comment.