All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.reactivex.rxjava3.processors.package-info Maven / Gradle / Ivy

There is a newer version: 3.1.9
Show newest version
/*
 * Copyright (c) 2016-present, RxJava Contributors.
 *
 * 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.
 */

/**
 * Classes representing so-called hot backpressure-aware sources, aka processors,
 * that implement the {@link io.reactivex.rxjava3.processors.FlowableProcessor FlowableProcessor} class,
 * the Reactive Streams {@link org.reactivestreams.Processor Processor} interface
 * to allow forms of multicasting events to one or more subscribers as well as consuming another
 * Reactive Streams {@link org.reactivestreams.Publisher Publisher}.
 * 

* Available processor implementations: *
*

    *
  • {@link io.reactivex.rxjava3.processors.AsyncProcessor AsyncProcessor} - replays the very last item
  • *
  • {@link io.reactivex.rxjava3.processors.BehaviorProcessor BehaviorProcessor} - remembers the latest item
  • *
  • {@link io.reactivex.rxjava3.processors.MulticastProcessor MulticastProcessor} - coordinates its source with its consumers
  • *
  • {@link io.reactivex.rxjava3.processors.PublishProcessor PublishProcessor} - dispatches items to current consumers
  • *
  • {@link io.reactivex.rxjava3.processors.ReplayProcessor ReplayProcessor} - remembers some or all items and replays them to consumers
  • *
  • {@link io.reactivex.rxjava3.processors.UnicastProcessor UnicastProcessor} - remembers or relays items to a single consumer
  • *
*

* The non-backpressured variants of the {@code FlowableProcessor} class are called * {@link io.reactivex.rxjava3.subjects.Subject}s and reside in the {@code io.reactivex.subjects} package. * @see io.reactivex.rxjava3.subjects */ package io.reactivex.rxjava3.processors;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy