Skip to content

Commit

Permalink
Uni memoization is not experimental anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge committed Jan 5, 2022
1 parent 5557d82 commit d3e65c3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion implementation/src/main/java/io/smallrye/mutiny/Uni.java
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,6 @@ default UniAwait<T> awaitUsing(Context context) {
* @return the object to configure memoization
* @apiNote This is an experimental API
*/
@Experimental("Memoization is an experimental feature at this stage")
@CheckReturnValue
UniMemoize<T> memoize();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@
import java.util.function.BooleanSupplier;

import io.smallrye.common.annotation.CheckReturnValue;
import io.smallrye.common.annotation.Experimental;
import io.smallrye.mutiny.Uni;
import io.smallrye.mutiny.infrastructure.Infrastructure;
import io.smallrye.mutiny.operators.AbstractUni;
import io.smallrye.mutiny.operators.uni.UniMemoizeOp;

@Experimental("Memoization is an experimental feature at this stage")
public class UniMemoize<T> {

private final Uni<T> upstream;
Expand Down

0 comments on commit d3e65c3

Please sign in to comment.