/*
 * Copyright (c) 2011-2017 Pivotal Software Inc, All Rights Reserved.
 *
 * 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
 *
 *       http://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 reactor.core.publisher;

import java.util.function.Function;

import org.reactivestreams.Subscriber;
import reactor.core.CoreSubscriber;
import reactor.util.context.Context;

Interface to produce synchronously "one signal" to an underlying Subscriber.

At most one next call and/or one complete() or error(Throwable) should be called per invocation of the generator function.

Calling a SynchronousSink outside of a generator consumer or function, e.g. using an async callback, is forbidden. You can FluxSink or MonoSink based generators for these situations.

Type parameters:
  • <T> – the output value type
/** * Interface to produce synchronously "one signal" to an underlying {@link Subscriber}. * <p> * At most one {@link #next} call and/or one {@link #complete()} or * {@link #error(Throwable)} should be called per invocation of the generator function. * * <p> * Calling a {@link SynchronousSink} outside of a generator consumer or function, e.g. * using an async callback, is forbidden. You can {@link FluxSink} or * {@link MonoSink} based generators for these situations. * * @param <T> the output value type */
public interface SynchronousSink<T> {
See Also:
  • onComplete.onComplete()
/** * @see Subscriber#onComplete() */
void complete();
Return the current subscriber Context.

Context can be enriched via Mono.subscriberContext(Function) or Flux.subscriberContext(Function) operator or directly by a child subscriber overriding CoreSubscriber.currentContext()

Returns:the current subscriber Context.
/** * Return the current subscriber {@link Context}. * <p> * {@link Context} can be enriched via {@link Mono#subscriberContext(Function)} * or {@link Flux#subscriberContext(Function)} * operator or directly by a child subscriber overriding * {@link CoreSubscriber#currentContext()} * * @return the current subscriber {@link Context}. */
Context currentContext();
Params:
  • e – the exception to signal, not null
See Also:
/** * @param e the exception to signal, not null * * @see Subscriber#onError(Throwable) */
void error(Throwable e);
Try emitting, might throw an unchecked exception.
Params:
  • t – the value to emit, not null
Throws:
See Also:
/** * Try emitting, might throw an unchecked exception. * * @param t the value to emit, not null * * @throws RuntimeException in case of unchecked error during the emission * @see Subscriber#onNext(Object) */
void next(T t); }