-
Notifications
You must be signed in to change notification settings - Fork 7.6k
/
Copy pathGroupedFlowable.java
52 lines (47 loc) · 1.97 KB
/
GroupedFlowable.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* Copyright 2016 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See
* the License for the specific language governing permissions and limitations under the License.
*/
package io.reactivex.flowables;
import io.reactivex.Flowable;
/**
* A {@link Flowable} that has been grouped by key, the value of which can be obtained with {@link #getKey()}.
* <p>
* <em>Note:</em> A {@link GroupedFlowable} will cache the items it is to emit until such time as it
* is subscribed to. For this reason, in order to avoid memory leaks, you should not simply ignore those
* {@code GroupedObservable}s that do not concern you. Instead, you can signal to them that they
* may discard their buffers by applying an operator like {@link Flowable#take take}{@code (0)} to them.
*
* @param <K>
* the type of the key
* @param <T>
* the type of the items emitted by the {@code GroupedFlowable}
* @see Flowable#groupBy(io.reactivex.functions.Function)
* @see <a href="http://reactivex.io/documentation/operators/groupby.html">ReactiveX documentation: GroupBy</a>
*/
public abstract class GroupedFlowable<K, T> extends Flowable<T> {
final K key;
/**
* Constructs a GroupedFlowable with the given key.
* @param key the key
*/
protected GroupedFlowable(K key) {
this.key = key;
}
/**
* Returns the key that identifies the group of items emitted by this {@code GroupedObservable}.
*
* @return the key that the items emitted by this {@code GroupedObservable} were grouped by
*/
public K getKey() {
return key;
}
}