Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2017 David Karnok
*
* 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 hu.akarnokd.reactive4javaflow.impl.operators;
import hu.akarnokd.reactive4javaflow.*;
import hu.akarnokd.reactive4javaflow.functionals.CheckedFunction;
import hu.akarnokd.reactive4javaflow.fused.*;
import hu.akarnokd.reactive4javaflow.impl.*;
import java.lang.invoke.*;
import java.util.Objects;
import java.util.concurrent.Flow;
import java.util.concurrent.atomic.AtomicInteger;
public final class FolyamSwitchMap extends Folyam {
final Folyam source;
final CheckedFunction super T, ? extends Flow.Publisher extends R>> mapper;
final int prefetch;
final boolean delayError;
public FolyamSwitchMap(Folyam source, CheckedFunction super T, ? extends Flow.Publisher extends R>> mapper, int prefetch, boolean delayError) {
this.source = source;
this.mapper = mapper;
this.prefetch = prefetch;
this.delayError = delayError;
}
@Override
protected void subscribeActual(FolyamSubscriber super R> s) {
if (s instanceof ConditionalSubscriber) {
source.subscribe(new SwitchMapConditionalSubscriber<>((ConditionalSubscriber super R>)s, mapper, prefetch, delayError));
} else {
source.subscribe(new SwitchMapSubscriber<>(s, mapper, prefetch, delayError));
}
}
static abstract class AbstractSwitchMap extends AtomicInteger implements FolyamSubscriber, Flow.Subscription, QueuedFolyamSubscriberSupport {
final CheckedFunction super T, ? extends Flow.Publisher extends R>> mapper;
final int prefetch;
final boolean delayError;
Flow.Subscription upstream;
long requested;
static final VarHandle REQUESTED = VH.find(MethodHandles.lookup(), AbstractSwitchMap.class, "requested", long.class);
QueuedInnerFolyamSubscriber current;
static final VarHandle CURRENT = VH.find(MethodHandles.lookup(), AbstractSwitchMap.class, "current", QueuedInnerFolyamSubscriber.class);
volatile boolean cancelled;
boolean done;
static final VarHandle DONE = VH.find(MethodHandles.lookup(), AbstractSwitchMap.class, "done", boolean.class);
Throwable error;
static final VarHandle ERROR = VH.find(MethodHandles.lookup(), AbstractSwitchMap.class, "error", Throwable.class);
long emitted;
static final QueuedInnerFolyamSubscriber TERMINATED;
static {
TERMINATED = new QueuedInnerFolyamSubscriber