@@ -31,7 +31,6 @@ public UniMemoize(AbstractUni<T> upstream) {
3131 * @param invalidationGuard the invalidation guard, which evaluates to {@code false} for as long as the item or failure must
3232 * be memoized, must not be {@code null}
3333 * @return a new {@link Uni}
34- * @apiNote This is an experimental API
3534 */
3635 @ CheckReturnValue
3736 public Uni <T > until (BooleanSupplier invalidationGuard ) {
@@ -49,7 +48,6 @@ public Uni<T> until(BooleanSupplier invalidationGuard) {
4948 * @param duration the memoization duration after having received the subscription from upstream, must not be
5049 * {@code null}, must be strictly positive
5150 * @return a new {@link Uni}
52- * @apiNote This is an experimental API
5351 * @deprecated use {@link #forFixedDuration(Duration)} instead.
5452 */
5553 @ Deprecated (forRemoval = true )
@@ -68,7 +66,6 @@ public Uni<T> atLeast(Duration duration) {
6866 * @param duration the memoization duration after having received the subscription from upstream, must not be
6967 * {@code null}, must be strictly positive
7068 * @return a new {@link Uni}
71- * @apiNote This is an experimental API
7269 */
7370 @ CheckReturnValue
7471 public Uni <T > forFixedDuration (Duration duration ) {
@@ -102,7 +99,6 @@ public boolean getAsBoolean() {
10299 * Memoize the received item or failure indefinitely.
103100 *
104101 * @return a new {@link Uni}
105- * @apiNote This is an experimental API
106102 */
107103 @ CheckReturnValue
108104 public Uni <T > indefinitely () {
0 commit comments