RxJava操作符实践:11_转换操作之6_toMultimap

一、描述

toMultiMap类似于toMap,不同的是,它生成的这个Map同时还是一个ArrayList(默认是这样,你可以传递一个可选的工厂方法修改这个行为)。

toMultiMap默认不在任何特定的调度器上执行。

二、示意图

toMultimap

三、示例代码

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
class Student {
private int id;
private String name;

public Student(int id, String name) {
this.id = id;
this.name = name;
}

public int getId() {
return id;
}

public String getName() {
return name;
}

@Override
public String toString() {
return "Student{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
}

Student stu1 = new Student(1001, "ZhangSan");
Student stu2 = new Student(1002, "LiSi");

Observable.just(stu1, stu2)
.toMultimap(new Func1<Student, Integer>() {
@Override
public Integer call(Student student) {
return student.getId();
}
})
.subscribe(new Subscriber<Map<Integer, Collection<Student>>>() {
@Override
public void onCompleted() {
System.out.println("onCompleted.");
}

@Override
public void onError(Throwable e) {
System.out.println("onError: " + e.getMessage());
}

@Override
public void onNext(Map<Integer, Collection<Student>> map) {
System.out.println("onNext: " + map.toString());
}
});

四、运行结果

1
2
onNext: onNext: {1002=[Student{id=1002, name='LiSi'}], 1001=[Student{id=1001, name='ZhangSan'}]}
onCompleted.

toMap(Func1)将原Observable发送的数据保存到一个MAP中,并在参数函数中,设定sutdent的id属性作为key。但toMultimap操作符在将数据保存到MAP前,先将数据保存到Collection,而toMap操作符将数据直接保存到MAP中,并没有再包裹一层
Collection。

五、更多

toMultimap操作符还有以下变体:

  • toMultiMap(Func1)
  • toMultiMap(Func1,Func1)
  • toMultiMap(Func1,Func1,Func0)
  • toMultiMap(Func1,Func1,Func0,Func1)

详情可查阅下面的参考资料。

六、参考资料

ReactiveX官方文档

ReactiveX文档中文翻译

PS:欢迎关注 SherlockShi 个人博客

感谢你的支持,让我继续努力分享有用的技术和知识点!