Package com.mongodb.async.client
Interface Subscription
-
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)
@Deprecated public interface Subscription
ASubscriptionrepresents a one-to-one lifecycle of aObserversubscribing to anObservable.Instances can only be used once by a single
Observer.It is used to both signal desire for data and to allow for unsubscribing.
- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanisUnsubscribed()Deprecated.Indicates whether thisSubscriptionis currently unsubscribed.voidrequest(long n)Deprecated.No operation will be sent to MongoDB from theObservableuntil demand is signaled via this method.voidunsubscribe()Deprecated.Request theObservableto stop sending data and clean up resources.
-
-
-
Method Detail
-
request
void request(long n)
Deprecated.No operation will be sent to MongoDB from theObservableuntil demand is signaled via this method.It can be called however often and whenever needed, but the outstanding cumulative demand must never exceed
Long.MAX_VALUE. An outstanding cumulative demand ofLong.MAX_VALUEmay be treated by theObservableas "effectively unbounded".Whatever has been requested might be sent, so only signal demand for what can be safely handled.
An
Observablecan send less than is requested if the stream ends but then must emit eitherObserver.onError(Throwable)orObserver.onComplete().- Parameters:
n- the strictly positive number of elements to requests to the upstreamObservable
-
unsubscribe
void unsubscribe()
Deprecated.Request theObservableto stop sending data and clean up resources.As this request is asynchronous data may still be sent to meet previously signalled demand after calling cancel.
-
isUnsubscribed
boolean isUnsubscribed()
Deprecated.Indicates whether thisSubscriptionis currently unsubscribed.- Returns:
trueif thisSubscriptionis currently unsubscribed,falseotherwise
-
-