object ActorPublisherMessage
- Alphabetic
- By Inheritance
- ActorPublisherMessage
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- sealed abstract class Cancel extends ActorPublisherMessage
-
final
case class
Request(n: Long) extends ActorPublisherMessage with NoSerializationVerificationNeeded with Product with Serializable
This message is delivered to the ActorPublisher actor when the stream subscriber requests more elements.
This message is delivered to the ActorPublisher actor when the stream subscriber requests more elements.
- n
number of requested elements
- sealed abstract class SubscriptionTimeoutExceeded extends ActorPublisherMessage
Value Members
-
def
cancelInstance: Cancel.type
Java API: get the singleton instance of the
Cancel
message -
def
subscriptionTimeoutExceededInstance: SubscriptionTimeoutExceeded.type
Java API: get the singleton instance of the
SubscriptionTimeoutExceeded
message -
object
Cancel extends Cancel with NoSerializationVerificationNeeded with Product with Serializable
This message is delivered to the ActorPublisher actor when the stream subscriber cancels the subscription.
-
object
SubscriptionTimeoutExceeded extends SubscriptionTimeoutExceeded with NoSerializationVerificationNeeded with Product with Serializable
This message is delivered to the ActorPublisher actor in order to signal the exceeding of an subscription timeout.
This message is delivered to the ActorPublisher actor in order to signal the exceeding of an subscription timeout. Once the actor receives this message, this publisher will already be in canceled state, thus the actor should clean-up and stop itself.