Flow.Subscription (Java SE 9 & JDK 9 )
-
- Enclosing class:
- Flow
public static interface Flow.SubscriptionMessage control linking a
Flow.PublisherandFlow.Subscriber. Subscribers receive items only when requested, and may cancel at any time. The methods in this interface are intended to be invoked only by their Subscribers; usages in other contexts have undefined effects.
-
-
Method Detail
-
request
void request(long n)
Adds the given number
nof items to the current unfulfilled demand for this subscription. Ifnis less than or equal to zero, the Subscriber will receive anonErrorsignal with anIllegalArgumentExceptionargument. Otherwise, the Subscriber will receive up tonadditionalonNextinvocations (or fewer if terminated).- Parameters:
n- the increment of demand; a value ofLong.MAX_VALUEmay be considered as effectively unbounded
-
cancel
void cancel()
Causes the Subscriber to (eventually) stop receiving messages. Implementation is best-effort -- additional messages may be received after invoking this method. A cancelled subscription need not ever receive an
onCompleteoronErrorsignal.
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2017, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.