/*
 * Copyright 2002-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.core;

import java.util.function.Supplier;

import org.springframework.lang.Nullable;
import org.springframework.util.Assert;

Describes the semantics of a reactive type including boolean checks for isMultiValue(), isNoValue(), and supportsEmpty().
Author:Rossen Stoyanchev
Since:5.0
/** * Describes the semantics of a reactive type including boolean checks for * {@link #isMultiValue()}, {@link #isNoValue()}, and {@link #supportsEmpty()}. * * @author Rossen Stoyanchev * @since 5.0 */
public final class ReactiveTypeDescriptor { private final Class<?> reactiveType; private final boolean multiValue; private final boolean noValue; @Nullable private final Supplier<?> emptyValueSupplier; private final boolean deferred; private ReactiveTypeDescriptor(Class<?> reactiveType, boolean multiValue, boolean noValue, @Nullable Supplier<?> emptySupplier) { this(reactiveType, multiValue, noValue, emptySupplier, true); } private ReactiveTypeDescriptor(Class<?> reactiveType, boolean multiValue, boolean noValue, @Nullable Supplier<?> emptySupplier, boolean deferred) { Assert.notNull(reactiveType, "'reactiveType' must not be null"); this.reactiveType = reactiveType; this.multiValue = multiValue; this.noValue = noValue; this.emptyValueSupplier = emptySupplier; this.deferred = deferred; }
Return the reactive type for this descriptor.
/** * Return the reactive type for this descriptor. */
public Class<?> getReactiveType() { return this.reactiveType; }
Return true if the reactive type can produce more than 1 value can be produced and is therefore a good fit to adapt to Flux. A false return value implies the reactive type can produce 1 value at most and is therefore a good fit to adapt to Mono.
/** * Return {@code true} if the reactive type can produce more than 1 value * can be produced and is therefore a good fit to adapt to {@code Flux}. * A {@code false} return value implies the reactive type can produce 1 * value at most and is therefore a good fit to adapt to {@code Mono}. */
public boolean isMultiValue() { return this.multiValue; }
Return true if the reactive type does not produce any values and only provides completion and error signals.
/** * Return {@code true} if the reactive type does not produce any values and * only provides completion and error signals. */
public boolean isNoValue() { return this.noValue; }
Return true if the reactive type can complete with no values.
/** * Return {@code true} if the reactive type can complete with no values. */
public boolean supportsEmpty() { return (this.emptyValueSupplier != null); }
Return an empty-value instance for the underlying reactive or async type. Use of this type implies supportsEmpty() is true.
/** * Return an empty-value instance for the underlying reactive or async type. * Use of this type implies {@link #supportsEmpty()} is true. */
public Object getEmptyValue() { Assert.state(this.emptyValueSupplier != null, "Empty values not supported"); return this.emptyValueSupplier.get(); }
Whether the underlying operation is deferred and needs to be started explicitly, e.g. via subscribing (or similar), or whether it is triggered without the consumer having any control.
Since:5.2.7
/** * Whether the underlying operation is deferred and needs to be started * explicitly, e.g. via subscribing (or similar), or whether it is triggered * without the consumer having any control. * @since 5.2.7 */
public boolean isDeferred() { return this.deferred; } @Override public boolean equals(@Nullable Object other) { if (this == other) { return true; } if (other == null || getClass() != other.getClass()) { return false; } return this.reactiveType.equals(((ReactiveTypeDescriptor) other).reactiveType); } @Override public int hashCode() { return this.reactiveType.hashCode(); }
Descriptor for a reactive type that can produce 0..N values.
Params:
  • type – the reactive type
  • emptySupplier – a supplier of an empty-value instance of the reactive type
/** * Descriptor for a reactive type that can produce 0..N values. * @param type the reactive type * @param emptySupplier a supplier of an empty-value instance of the reactive type */
public static ReactiveTypeDescriptor multiValue(Class<?> type, Supplier<?> emptySupplier) { return new ReactiveTypeDescriptor(type, true, false, emptySupplier); }
Descriptor for a reactive type that can produce 0..1 values.
Params:
  • type – the reactive type
  • emptySupplier – a supplier of an empty-value instance of the reactive type
/** * Descriptor for a reactive type that can produce 0..1 values. * @param type the reactive type * @param emptySupplier a supplier of an empty-value instance of the reactive type */
public static ReactiveTypeDescriptor singleOptionalValue(Class<?> type, Supplier<?> emptySupplier) { return new ReactiveTypeDescriptor(type, false, false, emptySupplier); }
Descriptor for a reactive type that must produce 1 value to complete.
Params:
  • type – the reactive type
/** * Descriptor for a reactive type that must produce 1 value to complete. * @param type the reactive type */
public static ReactiveTypeDescriptor singleRequiredValue(Class<?> type) { return new ReactiveTypeDescriptor(type, false, false, null); }
Descriptor for a reactive type that does not produce any values.
Params:
  • type – the reactive type
  • emptySupplier – a supplier of an empty-value instance of the reactive type
/** * Descriptor for a reactive type that does not produce any values. * @param type the reactive type * @param emptySupplier a supplier of an empty-value instance of the reactive type */
public static ReactiveTypeDescriptor noValue(Class<?> type, Supplier<?> emptySupplier) { return new ReactiveTypeDescriptor(type, false, true, emptySupplier); }
The same as singleOptionalValue(Class<?>, Supplier<?>) but for a non-deferred, async type such as CompletableFuture.
Params:
  • type – the reactive type
  • emptySupplier – a supplier of an empty-value instance of the reactive type
Since:5.2.7
/** * The same as {@link #singleOptionalValue(Class, Supplier)} but for a * non-deferred, async type such as {@link java.util.concurrent.CompletableFuture}. * @param type the reactive type * @param emptySupplier a supplier of an empty-value instance of the reactive type * @since 5.2.7 */
public static ReactiveTypeDescriptor nonDeferredAsyncValue(Class<?> type, Supplier<?> emptySupplier) { return new ReactiveTypeDescriptor(type, false, false, emptySupplier, false); } }