Modifier and Type | Field and Description |
---|---|
static Action1 |
BYTE_BUF_RELEASER
|
Constructor and Description |
---|
Buffers() |
Modifier and Type | Method and Description |
---|---|
static <T> Observable<T> |
wrapColdWithAutoRelease(Observable<T> source)
Wrap an observable and free a reference counted item if unsubscribed in the meantime.
|
public static final Action1 BYTE_BUF_RELEASER
public static <T> Observable<T> wrapColdWithAutoRelease(Observable<T> source)
Wrap an observable and free a reference counted item if unsubscribed in the meantime.
This can and should be used if a hot observable is used as the source but it is not guaranteed that there will always be a subscriber that consumes the reference counted item. If an item is emitted by the source observable and no subscriber is attached (because it unsubscribed) the item will be freed.
Note that also non reference counted items can be passed in, but there is no impact other than making it cold (in which case defer could be used).
It is very important that if subscribed, the caller needs to release the reference counted item. It wil only be released on behalf of the caller when unsubscribed.
source
- the source observable to wrap.Copyright © 2016 Couchbase, Inc.. All rights reserved.