Package akka.stream.actor
Class ActorSubscriberImpl<T>
- java.lang.Object
-
- akka.stream.actor.ActorSubscriberImpl<T>
-
- All Implemented Interfaces:
org.reactivestreams.Subscriber<T>
public final class ActorSubscriberImpl<T> extends java.lang.Object implements org.reactivestreams.Subscriber<T>
INTERNAL API
-
-
Constructor Summary
Constructors Constructor Description ActorSubscriberImpl(ActorRef impl)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActorRef
impl()
void
onComplete()
void
onError(java.lang.Throwable cause)
void
onNext(T element)
void
onSubscribe(org.reactivestreams.Subscription subscription)
-
-
-
Constructor Detail
-
ActorSubscriberImpl
public ActorSubscriberImpl(ActorRef impl)
-
-
Method Detail
-
impl
public ActorRef impl()
-
onComplete
public void onComplete()
- Specified by:
onComplete
in interfaceorg.reactivestreams.Subscriber<T>
-
onError
public void onError(java.lang.Throwable cause)
- Specified by:
onError
in interfaceorg.reactivestreams.Subscriber<T>
-
onNext
public void onNext(T element)
- Specified by:
onNext
in interfaceorg.reactivestreams.Subscriber<T>
-
onSubscribe
public void onSubscribe(org.reactivestreams.Subscription subscription)
- Specified by:
onSubscribe
in interfaceorg.reactivestreams.Subscriber<T>
-
-