|
| 1 | +package rxjava.filtering; |
| 2 | + |
| 3 | + |
| 4 | +import com.sun.prism.paint.Color; |
| 5 | + |
| 6 | +import java.util.Arrays; |
| 7 | +import java.util.List; |
| 8 | + |
| 9 | +import common.CommonObserver; |
| 10 | +import common.Shape; |
| 11 | +import io.reactivex.Observable; |
| 12 | +import io.reactivex.ObservableEmitter; |
| 13 | +import io.reactivex.ObservableOnSubscribe; |
| 14 | +import io.reactivex.functions.Consumer; |
| 15 | +import io.reactivex.functions.Function; |
| 16 | + |
| 17 | +/** |
| 18 | + * Author: andy.xwt |
| 19 | + * Date: 2019/11/28 19:07 |
| 20 | + * Description:抑制(过滤掉)重复的数据项 |
| 21 | + * https://mcxiaoke.gitbooks.io/rxdocs/content/operators/Distinct.html |
| 22 | + */ |
| 23 | + |
| 24 | + |
| 25 | +class DistinctOperator { |
| 26 | + |
| 27 | + |
| 28 | + public static List<common.Shape> mShapeLis = Arrays.asList( |
| 29 | + new common.Shape(Color.RED, "circular"),//红色圆形 |
| 30 | + new common.Shape(Color.GREEN, "triangle"),//绿色三角形 |
| 31 | + new common.Shape(Color.RED, "rhombus"),//红色菱形 |
| 32 | + new common.Shape(Color.BLUE, "rhombus"),//蓝色菱形 |
| 33 | + new common.Shape(Color.BLUE, "triangle"),//蓝色三角形 |
| 34 | + new common.Shape(Color.WHITE, "triangle")//白色三角形 |
| 35 | + ); |
| 36 | + |
| 37 | + |
| 38 | + /** |
| 39 | + * Distinct的过滤规则是:只允许还没有发射过的数据项通过。 |
| 40 | + * <p> |
| 41 | + * 在某些实现中,有一些变体允许你调整判定两个数据不同(distinct)的标准。还有一些实现只比较一项数据和它的直接前驱,因此只会从序列中过滤掉连续重复的数据。 |
| 42 | + */ |
| 43 | + public static void testDistinct() { |
| 44 | + //输出1,2,3 |
| 45 | + Observable.just(1, 2, 1, 1, 2, 3) |
| 46 | + .distinct() |
| 47 | + .subscribe(new CommonObserver()); |
| 48 | + |
| 49 | + } |
| 50 | + |
| 51 | + |
| 52 | + /** |
| 53 | + * 这个操作符有一个变体接受一个函数。这个函数根据原始Observable发射的数据项产生一个Key,然后,比较这些Key而不是数据本身,来判定两个数据是否是不同的。 |
| 54 | + * http://reactivex.io/RxJava/javadoc/rx/Observable.html#distinct(rx.functions.Func1 |
| 55 | + * 输出: |
| 56 | + * new common.Shape(Color.RED, "circular"),//红色圆形 |
| 57 | + * new common.Shape(Color.GREEN, "triangle"),//绿色三角形 |
| 58 | + * new common.Shape(Color.RED, "rhombus"),//红色菱形 |
| 59 | + */ |
| 60 | + public static void testDistinctFun() { |
| 61 | + Observable.create(new ObservableOnSubscribe<Shape>() { |
| 62 | + @Override |
| 63 | + public void subscribe(ObservableEmitter<Shape> emitter) throws Exception { |
| 64 | + for (Shape shape : mShapeLis) { |
| 65 | + emitter.onNext(shape); |
| 66 | + } |
| 67 | + } |
| 68 | + }).distinct(new Function<Shape, String>() { |
| 69 | + @Override |
| 70 | + public String apply(Shape shape) throws Exception { |
| 71 | + return shape.type;//其实默认传入的是hashSet,这里返回的值就是hashset中的key |
| 72 | + } |
| 73 | + }).subscribe(new Consumer<Shape>() { |
| 74 | + @Override |
| 75 | + public void accept(Shape shape) throws Exception { |
| 76 | + System.out.println(shape.type + "---->" + shape.color); |
| 77 | + } |
| 78 | + }); |
| 79 | + } |
| 80 | + |
| 81 | + /** |
| 82 | + * RxJava还是实现了一个distinctUntilChanged操作符。 |
| 83 | + * 它只判定一个数据和它的直接前驱是否是不同的!!!!!!!!!!!!! |
| 84 | + * 它只判定一个数据和它的直接前驱是否是不同的!!!!!!!!!!!!! |
| 85 | + * 它只判定一个数据和它的直接前驱是否是不同的!!!!!!!!!!!!! |
| 86 | + * 和distinct(Func1)一样,根据一个函数产生的Key判定两个相邻的数据项是不是不同的 |
| 87 | + * distinct和distinctUntilChanged默认不在任何特定的调度器上执行。 |
| 88 | + * <p> |
| 89 | + * 输出: |
| 90 | + * new common.Shape(Color.RED, "circular"),//红色圆形 |
| 91 | + * new common.Shape(Color.GREEN, "triangle"),//绿色三角形 |
| 92 | + * new common.Shape(Color.RED, "rhombus"),//红色菱形 |
| 93 | + * new common.Shape(Color.BLUE, "rhombus"),//蓝色菱形 |
| 94 | + * new common.Shape(Color.WHITE, "triangle")//白色三角形 |
| 95 | + */ |
| 96 | + public static void testDistinctUntilChanged() { |
| 97 | + Observable.create(new ObservableOnSubscribe<Shape>() { |
| 98 | + @Override |
| 99 | + public void subscribe(ObservableEmitter<Shape> emitter) throws Exception { |
| 100 | + for (Shape shape : mShapeLis) { |
| 101 | + emitter.onNext(shape); |
| 102 | + } |
| 103 | + } |
| 104 | + //判断的是上一个节点 |
| 105 | + }).distinctUntilChanged(new Function<Shape, Color>() { |
| 106 | + @Override |
| 107 | + public Color apply(Shape shape) throws Exception { |
| 108 | + return shape.color; |
| 109 | + |
| 110 | + } |
| 111 | + }).subscribe(new Consumer<Shape>() { |
| 112 | + @Override |
| 113 | + public void accept(Shape shape) throws Exception { |
| 114 | + System.out.println(shape.type + "---->" + shape.color); |
| 115 | + } |
| 116 | + }); |
| 117 | + } |
| 118 | + |
| 119 | + public static void main(String[] args) { |
| 120 | +// testDistinct(); |
| 121 | + testDistinctFun(); |
| 122 | +// testDistinctUntilChanged(); |
| 123 | + } |
| 124 | + |
| 125 | + |
| 126 | +} |
0 commit comments