Interface MaybeConverter<T,​R>

  • Type Parameters:
    T - the upstream type
    R - the output type
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface MaybeConverter<@NonNull T,​@NonNull R>
    Convenience interface and callback used by the Maybe.to(io.reactivex.rxjava3.core.MaybeConverter<T, ? extends R>) operator to turn a Maybe into another value fluently.

    History: 2.1.7 - experimental

    Since:
    2.2
    • Method Detail

      • apply

        @NonNull
        R apply​(@NonNull
                @NonNull Maybe<@NonNull T> upstream)
        Applies a function to the upstream Maybe and returns a converted value of type R.
        Parameters:
        upstream - the upstream Maybe instance
        Returns:
        the converted value