Skip to content

Commit 5fd4d22

Browse files
committed
docs: UniMemoize - remove outdated javadoc
1 parent 46b3f9d commit 5fd4d22

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

implementation/src/main/java/io/smallrye/mutiny/Uni.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,6 @@ default UniAwait<T> awaitUsing(Context context) {
344344
* Configure memoization of the {@link Uni} item or failure.
345345
*
346346
* @return the object to configure memoization
347-
* @apiNote This is an experimental API
348347
*/
349348
@CheckReturnValue
350349
UniMemoize<T> memoize();

implementation/src/main/java/io/smallrye/mutiny/groups/UniMemoize.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)