
org.apache.pekko.stream.impl.SinkholeSubscriber.scala Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* This file is part of the Apache Pekko project, which was derived from Akka.
*/
/*
* Copyright (C) 2014-2022 Lightbend Inc.
*/
package org.apache.pekko.stream.impl
import scala.concurrent.Promise
import org.apache.pekko
import pekko.Done
import pekko.annotation.InternalApi
import org.reactivestreams.{ Subscriber, Subscription }
/**
* INTERNAL API
*/
@InternalApi private[pekko] final class SinkholeSubscriber[T](whenComplete: Promise[Done]) extends Subscriber[T] {
private[this] var running: Boolean = false
override def onSubscribe(sub: Subscription): Unit = {
ReactiveStreamsCompliance.requireNonNullSubscription(sub)
if (running) sub.cancel()
else {
running = true
sub.request(Long.MaxValue)
}
}
override def onError(cause: Throwable): Unit = {
ReactiveStreamsCompliance.requireNonNullException(cause)
whenComplete.tryFailure(cause)
}
override def onComplete(): Unit = whenComplete.trySuccess(Done)
override def onNext(element: T): Unit = ReactiveStreamsCompliance.requireNonNullElement(element)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy