Class ActorSubscriberImpl<T>
TBD
Implements
ISubscriber<T>
Inherited Members
Namespace: Akka.Streams.Actors
Assembly: Akka.Streams.dll
Syntax
public sealed class ActorSubscriberImpl<T> : ISubscriber<T>
Type Parameters
| Name | Description |
|---|---|
| T | TBD |
Constructors
| Edit this page View SourceActorSubscriberImpl(IActorRef)
TBD
Declaration
public ActorSubscriberImpl(IActorRef impl)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | impl | TBD |
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | This exception is thrown when the specified |
Methods
| Edit this page View SourceOnComplete()
TBD
Declaration
public void OnComplete()
OnError(Exception)
TBD
Declaration
public void OnError(Exception cause)
Parameters
| Type | Name | Description |
|---|---|---|
| Exception | cause | TBD |
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | This exception is thrown when the specified |
OnNext(object)
TBD
Declaration
public void OnNext(object element)
Parameters
| Type | Name | Description |
|---|---|---|
| object | element | TBD |
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | This exception is thrown when the specified |
OnNext(T)
TBD
Declaration
public void OnNext(T element)
Parameters
| Type | Name | Description |
|---|---|---|
| T | element | TBD |
OnSubscribe(ISubscription)
TBD
Declaration
public void OnSubscribe(ISubscription subscription)
Parameters
| Type | Name | Description |
|---|---|---|
| ISubscription | subscription | TBD |
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | This exception is thrown when the specified |
Implements
Reactive.Streams.ISubscriber<T>
Edit this page