Rxjava2背压管理策略不指定线程Demo日志

观察者和被观察者分别运行在相同线程,而且不指定线程。即不指定subscribeOn()和observeOn()方法

其中这里Demo里写的自动拉取的事件数为10,不再是130。在不指定线程的情况下,拉取10条数据和拉取130条数据的场景,得到的结果没有本质的差别(只是打印数量的区别,一个打印10个,一个打印130个)。

ERROR:

自动请求10

06-04 19:01:58.968 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1开始发射数据1559646118985
06-04 19:01:58.968 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->0
06-04 19:01:58.998 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->0
06-04 19:01:59.008 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->1
06-04 19:01:59.028 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->1
06-04 19:01:59.038 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->2
06-04 19:01:59.058 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->2
06-04 19:01:59.068 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->3
06-04 19:01:59.088 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->3
06-04 19:01:59.098 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->4
06-04 19:01:59.118 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->4
06-04 19:01:59.128 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->5
06-04 19:01:59.149 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->5
06-04 19:01:59.159 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->6
06-04 19:01:59.179 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->6
06-04 19:01:59.189 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->7
06-04 19:01:59.209 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->7
06-04 19:01:59.229 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->8
06-04 19:01:59.249 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->8
06-04 19:01:59.259 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->9
06-04 19:01:59.279 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1接收---------->9
06-04 19:01:59.289 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->10
06-04 19:01:59.299 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1onError: ---------->io.reactivex.exceptions.MissingBackpressureException: create: could not emit value due to lack of requests
06-04 19:01:59.309 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->11
06-04 19:01:59.319 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->12
06-04 19:01:59.329 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->13
06-04 19:01:59.339 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->14
06-04 19:01:59.349 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->15
06-04 19:01:59.369 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->16
06-04 19:01:59.379 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->17
06-04 19:01:59.389 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->18
06-04 19:01:59.399 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->19
06-04 19:01:59.409 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->20
06-04 19:01:59.419 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->21
06-04 19:01:59.439 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->22
06-04 19:01:59.449 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->23
06-04 19:01:59.459 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->24
06-04 19:01:59.469 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->25
06-04 19:01:59.479 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->26
06-04 19:01:59.489 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->27
06-04 19:01:59.509 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->28
06-04 19:01:59.519 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->29
06-04 19:01:59.529 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->30
06-04 19:01:59.539 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->31
06-04 19:01:59.549 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->32
06-04 19:01:59.559 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->33
06-04 19:01:59.569 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->34
06-04 19:01:59.589 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->35
06-04 19:01:59.599 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->36
06-04 19:01:59.609 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->37
06-04 19:01:59.619 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->38
06-04 19:01:59.629 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->39
06-04 19:01:59.649 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->40
06-04 19:01:59.659 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->41
06-04 19:01:59.669 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->42
06-04 19:01:59.679 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->43
06-04 19:01:59.689 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->44
06-04 19:01:59.709 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->45
06-04 19:01:59.719 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->46
06-04 19:01:59.729 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->47
06-04 19:01:59.739 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->48
06-04 19:01:59.749 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->49
06-04 19:01:59.759 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->50
06-04 19:01:59.769 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->51
06-04 19:01:59.789 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->52
06-04 19:01:59.799 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->53
06-04 19:01:59.809 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->54
06-04 19:01:59.819 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->55
06-04 19:01:59.829 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->56
06-04 19:01:59.849 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->57
06-04 19:01:59.859 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->58
06-04 19:01:59.869 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->59
06-04 19:01:59.879 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->60
06-04 19:01:59.889 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->61
06-04 19:01:59.909 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->62
06-04 19:01:59.919 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->63
06-04 19:01:59.929 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->64
06-04 19:01:59.939 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->65
06-04 19:01:59.949 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->66
06-04 19:01:59.959 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->67
06-04 19:01:59.969 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->68
06-04 19:01:59.979 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->69
06-04 19:02:00.019 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->70
06-04 19:02:00.029 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->71
06-04 19:02:00.039 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->72
06-04 19:02:00.049 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->73
06-04 19:02:00.069 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->74
06-04 19:02:00.079 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->75
06-04 19:02:00.089 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->76
06-04 19:02:00.109 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->77
06-04 19:02:00.119 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->78
06-04 19:02:00.129 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->79
06-04 19:02:00.139 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->80
06-04 19:02:00.149 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->81
06-04 19:02:00.159 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->82
06-04 19:02:00.170 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->83
06-04 19:02:00.180 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->84
06-04 19:02:00.190 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->85
06-04 19:02:00.200 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->86
06-04 19:02:00.220 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->87
06-04 19:02:00.230 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->88
06-04 19:02:00.240 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->89
06-04 19:02:00.250 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->90
06-04 19:02:00.260 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->91
06-04 19:02:00.270 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->92
06-04 19:02:00.280 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->93
06-04 19:02:00.290 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->94
06-04 19:02:00.300 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->95
06-04 19:02:00.310 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->96
06-04 19:02:00.320 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->97
06-04 19:02:00.330 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->98
06-04 19:02:00.340 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->99
06-04 19:02:00.350 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->100
06-04 19:02:00.360 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->101
06-04 19:02:00.370 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->102
06-04 19:02:00.380 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->103
06-04 19:02:00.390 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->104
06-04 19:02:00.400 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->105
06-04 19:02:00.410 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->106
06-04 19:02:00.420 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->107
06-04 19:02:00.430 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->108
06-04 19:02:00.440 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->109
06-04 19:02:00.450 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->110
06-04 19:02:00.460 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->111
06-04 19:02:00.470 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->112
06-04 19:02:00.480 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->113
06-04 19:02:00.500 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->114
06-04 19:02:00.510 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->115
06-04 19:02:00.520 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->116
06-04 19:02:00.540 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->117
06-04 19:02:00.550 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->118
06-04 19:02:00.560 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->119
06-04 19:02:00.570 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->120
06-04 19:02:00.580 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->121
06-04 19:02:00.590 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->122
06-04 19:02:00.610 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->123
06-04 19:02:00.620 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->124
06-04 19:02:00.630 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->125
06-04 19:02:00.640 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->126
06-04 19:02:00.650 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->127
06-04 19:02:00.660 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->128
06-04 19:02:00.680 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->129
06-04 19:02:00.690 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->130
06-04 19:02:00.700 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->131
06-04 19:02:00.710 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->132
06-04 19:02:00.720 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->133
06-04 19:02:00.730 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->134
06-04 19:02:00.750 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->135
06-04 19:02:00.760 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->136
06-04 19:02:00.770 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->137
06-04 19:02:00.780 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->138
06-04 19:02:00.790 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->139
06-04 19:02:00.800 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->140
06-04 19:02:00.820 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->141
06-04 19:02:00.830 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->142
06-04 19:02:00.840 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->143
06-04 19:02:00.850 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->144
06-04 19:02:00.860 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->145
06-04 19:02:00.870 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->146
06-04 19:02:00.880 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->147
06-04 19:02:00.900 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->148
06-04 19:02:00.910 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->149
06-04 19:02:00.920 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射---->150
06-04 19:02:00.930 4180-4180/com.example.rxjavabackpressure D/MainActivity: 1发射数据结束1559646120941

Request(20) : 点击之后不会再有输出。

Missing:

自动请求10

06-04 19:09:30.189 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1开始发射数据1559646570204
06-04 19:09:30.189 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->0
06-04 19:09:30.209 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->0
06-04 19:09:30.229 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->1
06-04 19:09:30.249 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->1
06-04 19:09:30.259 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->2
06-04 19:09:30.279 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->2
06-04 19:09:30.289 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->3
06-04 19:09:30.309 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->3
06-04 19:09:30.319 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->4
06-04 19:09:30.339 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->4
06-04 19:09:30.349 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->5
06-04 19:09:30.369 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->5
06-04 19:09:30.379 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->6
06-04 19:09:30.399 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->6
06-04 19:09:30.419 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->7
06-04 19:09:30.439 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->7
06-04 19:09:30.449 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->8
06-04 19:09:30.469 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->8
06-04 19:09:30.479 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->9
06-04 19:09:30.499 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->9
06-04 19:09:30.509 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->10
06-04 19:09:30.559 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->10
06-04 19:09:30.579 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->11
06-04 19:09:30.599 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->11
06-04 19:09:30.609 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->12
06-04 19:09:30.629 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->12
06-04 19:09:30.639 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->13
06-04 19:09:30.659 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->13
06-04 19:09:30.669 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->14
06-04 19:09:30.689 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->14
06-04 19:09:30.709 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->15
06-04 19:09:30.729 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->15
06-04 19:09:30.739 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->16
06-04 19:09:30.759 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->16
06-04 19:09:30.769 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->17
06-04 19:09:30.789 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->17
06-04 19:09:30.799 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->18
06-04 19:09:30.829 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->18
06-04 19:09:30.839 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->19
06-04 19:09:30.859 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->19
06-04 19:09:30.869 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->20
06-04 19:09:30.889 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->20
06-04 19:09:30.899 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->21
06-04 19:09:30.919 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->21
06-04 19:09:30.929 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->22
06-04 19:09:30.959 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->22
06-04 19:09:30.969 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->23
06-04 19:09:30.989 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->23
06-04 19:09:30.999 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->24
06-04 19:09:31.019 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->24
06-04 19:09:31.029 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->25
06-04 19:09:31.049 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->25
06-04 19:09:31.069 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->26
06-04 19:09:31.089 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->26
06-04 19:09:31.099 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->27
06-04 19:09:31.119 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->27
06-04 19:09:31.129 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->28
06-04 19:09:31.149 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->28
06-04 19:09:31.159 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->29
06-04 19:09:31.180 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->29
06-04 19:09:31.190 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->30
06-04 19:09:31.210 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->30
06-04 19:09:31.220 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->31
06-04 19:09:31.240 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->31
06-04 19:09:31.250 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->32
06-04 19:09:31.280 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->32
06-04 19:09:31.290 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->33
06-04 19:09:31.310 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->33
06-04 19:09:31.320 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->34
06-04 19:09:31.340 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->34
06-04 19:09:31.350 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->35
06-04 19:09:31.370 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->35
06-04 19:09:31.390 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->36
06-04 19:09:31.410 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->36
06-04 19:09:31.420 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->37
06-04 19:09:31.440 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->37
06-04 19:09:31.450 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->38
06-04 19:09:31.470 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->38
06-04 19:09:31.480 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->39
06-04 19:09:31.500 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->39
06-04 19:09:31.520 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->40
06-04 19:09:31.540 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->40
06-04 19:09:31.550 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->41
06-04 19:09:31.570 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->41
06-04 19:09:31.580 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->42
06-04 19:09:31.600 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->42
06-04 19:09:31.610 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->43
06-04 19:09:31.640 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->43
06-04 19:09:31.650 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->44
06-04 19:09:31.670 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->44
06-04 19:09:31.680 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->45
06-04 19:09:31.700 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->45
06-04 19:09:31.710 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->46
06-04 19:09:31.730 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->46
06-04 19:09:31.740 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->47
06-04 19:09:31.760 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->47
06-04 19:09:31.780 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->48
06-04 19:09:31.800 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->48
06-04 19:09:31.810 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->49
06-04 19:09:31.830 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->49
06-04 19:09:31.840 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->50
06-04 19:09:31.860 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->50
06-04 19:09:31.870 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->51
06-04 19:09:31.900 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->51
06-04 19:09:31.910 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->52
06-04 19:09:31.930 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->52
06-04 19:09:31.940 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->53
06-04 19:09:31.960 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->53
06-04 19:09:31.970 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->54
06-04 19:09:31.990 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->54
06-04 19:09:32.010 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->55
06-04 19:09:32.030 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->55
06-04 19:09:32.040 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->56
06-04 19:09:32.060 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->56
06-04 19:09:32.070 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->57
06-04 19:09:32.090 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->57
06-04 19:09:32.100 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->58
06-04 19:09:32.130 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->58
06-04 19:09:32.140 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->59
06-04 19:09:32.160 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->59
06-04 19:09:32.170 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->60
06-04 19:09:32.190 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->60
06-04 19:09:32.211 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->61
06-04 19:09:32.231 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->61
06-04 19:09:32.241 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->62
06-04 19:09:32.271 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->62
06-04 19:09:32.281 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->63
06-04 19:09:32.301 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->63
06-04 19:09:32.311 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->64
06-04 19:09:32.331 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->64
06-04 19:09:32.341 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->65
06-04 19:09:32.371 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->65
06-04 19:09:32.381 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->66
06-04 19:09:32.401 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->66
06-04 19:09:32.411 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->67
06-04 19:09:32.431 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->67
06-04 19:09:32.441 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->68
06-04 19:09:32.461 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->68
06-04 19:09:32.471 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->69
06-04 19:09:32.501 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->69
06-04 19:09:32.511 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->70
06-04 19:09:32.531 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->70
06-04 19:09:32.541 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->71
06-04 19:09:32.561 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->71
06-04 19:09:32.571 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->72
06-04 19:09:32.601 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->72
06-04 19:09:32.611 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->73
06-04 19:09:32.631 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->73
06-04 19:09:32.641 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->74
06-04 19:09:32.661 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->74
06-04 19:09:32.671 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->75
06-04 19:09:32.701 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->75
06-04 19:09:32.711 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->76
06-04 19:09:32.731 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->76
06-04 19:09:32.741 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->77
06-04 19:09:32.761 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->77
06-04 19:09:32.771 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->78
06-04 19:09:32.801 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->78
06-04 19:09:32.811 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->79
06-04 19:09:32.841 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->79
06-04 19:09:32.851 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->80
06-04 19:09:32.881 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->80
06-04 19:09:32.891 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->81
06-04 19:09:32.911 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->81
06-04 19:09:32.921 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->82
06-04 19:09:32.941 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->82
06-04 19:09:32.951 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->83
06-04 19:09:32.981 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->83
06-04 19:09:32.991 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->84
06-04 19:09:33.011 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->84
06-04 19:09:33.021 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->85
06-04 19:09:33.041 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->85
06-04 19:09:33.061 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->86
06-04 19:09:33.081 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->86
06-04 19:09:33.091 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->87
06-04 19:09:33.111 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->87
06-04 19:09:33.121 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->88
06-04 19:09:33.141 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->88
06-04 19:09:33.151 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->89
06-04 19:09:33.171 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->89
06-04 19:09:33.181 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->90
06-04 19:09:33.201 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->90
06-04 19:09:33.211 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->91
06-04 19:09:33.232 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->91
06-04 19:09:33.252 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->92
06-04 19:09:33.272 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->92
06-04 19:09:33.282 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->93
06-04 19:09:33.302 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->93
06-04 19:09:33.312 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->94
06-04 19:09:33.332 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->94
06-04 19:09:33.342 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->95
06-04 19:09:33.372 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->95
06-04 19:09:33.382 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->96
06-04 19:09:33.402 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->96
06-04 19:09:33.412 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->97
06-04 19:09:33.432 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->97
06-04 19:09:33.442 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->98
06-04 19:09:33.462 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->98
06-04 19:09:33.472 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->99
06-04 19:09:33.502 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->99
06-04 19:09:33.512 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->100
06-04 19:09:33.532 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->100
06-04 19:09:33.542 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->101
06-04 19:09:33.562 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->101
06-04 19:09:33.572 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->102
06-04 19:09:33.592 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->102
06-04 19:09:33.612 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->103
06-04 19:09:33.632 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->103
06-04 19:09:33.642 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->104
06-04 19:09:33.662 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->104
06-04 19:09:33.672 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->105
06-04 19:09:33.692 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->105
06-04 19:09:33.702 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->106
06-04 19:09:33.732 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->106
06-04 19:09:33.742 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->107
06-04 19:09:33.762 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->107
06-04 19:09:33.772 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->108
06-04 19:09:33.792 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->108
06-04 19:09:33.802 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->109
06-04 19:09:33.822 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->109
06-04 19:09:33.842 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->110
06-04 19:09:33.862 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->110
06-04 19:09:33.872 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->111
06-04 19:09:33.892 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->111
06-04 19:09:33.902 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->112
06-04 19:09:33.922 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->112
06-04 19:09:33.932 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->113
06-04 19:09:33.952 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->113
06-04 19:09:33.972 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->114
06-04 19:09:33.992 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->114
06-04 19:09:34.002 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->115
06-04 19:09:34.022 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->115
06-04 19:09:34.032 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->116
06-04 19:09:34.052 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->116
06-04 19:09:34.062 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->117
06-04 19:09:34.092 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->117
06-04 19:09:34.102 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->118
06-04 19:09:34.122 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->118
06-04 19:09:34.132 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->119
06-04 19:09:34.152 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->119
06-04 19:09:34.162 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->120
06-04 19:09:34.182 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->120
06-04 19:09:34.202 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->121
06-04 19:09:34.222 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->121
06-04 19:09:34.232 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->122
06-04 19:09:34.253 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->122
06-04 19:09:34.263 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->123
06-04 19:09:34.283 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->123
06-04 19:09:34.293 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->124
06-04 19:09:34.313 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->124
06-04 19:09:34.333 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->125
06-04 19:09:34.353 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->125
06-04 19:09:34.363 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->126
06-04 19:09:34.383 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->126
06-04 19:09:34.393 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->127
06-04 19:09:34.413 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->127
06-04 19:09:34.423 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->128
06-04 19:09:34.453 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->128
06-04 19:09:34.463 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->129
06-04 19:09:34.483 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->129
06-04 19:09:34.493 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->130
06-04 19:09:34.513 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->130
06-04 19:09:34.523 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->131
06-04 19:09:34.543 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->131
06-04 19:09:34.553 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->132
06-04 19:09:34.583 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->132
06-04 19:09:34.593 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->133
06-04 19:09:34.613 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->133
06-04 19:09:34.623 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->134
06-04 19:09:34.643 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->134
06-04 19:09:34.653 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->135
06-04 19:09:34.673 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->135
06-04 19:09:34.693 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->136
06-04 19:09:34.713 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->136
06-04 19:09:34.723 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->137
06-04 19:09:34.743 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->137
06-04 19:09:34.753 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->138
06-04 19:09:34.773 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->138
06-04 19:09:34.783 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->139
06-04 19:09:34.803 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->139
06-04 19:09:34.823 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->140
06-04 19:09:34.843 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->140
06-04 19:09:34.853 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->141
06-04 19:09:34.873 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->141
06-04 19:09:34.883 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->142
06-04 19:09:34.903 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->142
06-04 19:09:34.913 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->143
06-04 19:09:34.943 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->143
06-04 19:09:34.953 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->144
06-04 19:09:34.973 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->144
06-04 19:09:34.983 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->145
06-04 19:09:35.003 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->145
06-04 19:09:35.013 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->146
06-04 19:09:35.033 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->146
06-04 19:09:35.053 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->147
06-04 19:09:35.073 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->147
06-04 19:09:35.083 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->148
06-04 19:09:35.103 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->148
06-04 19:09:35.113 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->149
06-04 19:09:35.133 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->149
06-04 19:09:35.143 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射---->150
06-04 19:09:35.173 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收---------->150
06-04 19:09:35.183 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1发射数据结束1559646575188
06-04 19:09:35.183 4718-4718/com.example.rxjavabackpressure D/MainActivity: 1接收----> 完成

Request(20) : 点击之后不会再有输出。

Buffer:

06-04 19:11:58.083 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1开始发射数据1559646718090
06-04 19:11:58.083 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->0
06-04 19:11:58.103 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->0
06-04 19:11:58.113 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->1
06-04 19:11:58.133 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->1
06-04 19:11:58.143 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->2
06-04 19:11:58.163 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->2
06-04 19:11:58.173 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->3
06-04 19:11:58.193 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->3
06-04 19:11:58.203 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->4
06-04 19:11:58.233 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->4
06-04 19:11:58.243 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->5
06-04 19:11:58.273 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->5
06-04 19:11:58.283 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->6
06-04 19:11:58.303 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->6
06-04 19:11:58.313 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->7
06-04 19:11:58.333 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->7
06-04 19:11:58.353 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->8
06-04 19:11:58.373 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->8
06-04 19:11:58.383 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->9
06-04 19:11:58.403 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->9
06-04 19:11:58.413 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->10
06-04 19:11:58.433 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->11
06-04 19:11:58.443 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->12
06-04 19:11:58.453 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->13
06-04 19:11:58.463 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->14
06-04 19:11:58.473 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->15
06-04 19:11:58.483 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->16
06-04 19:11:58.503 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->17
06-04 19:11:58.513 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->18
06-04 19:11:58.523 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->19
06-04 19:11:58.533 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->20
06-04 19:11:58.543 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->21
06-04 19:11:58.553 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->22
06-04 19:11:58.573 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->23
06-04 19:11:58.583 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->24
06-04 19:11:58.593 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->25
06-04 19:11:58.603 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->26
06-04 19:11:58.613 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->27
06-04 19:11:58.623 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->28
06-04 19:11:58.643 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->29
06-04 19:11:58.653 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->30
06-04 19:11:58.663 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->31
06-04 19:11:58.683 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->32
06-04 19:11:58.693 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->33
06-04 19:11:58.703 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->34
06-04 19:11:58.723 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->35
06-04 19:11:58.733 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->36
06-04 19:11:58.743 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->37
06-04 19:11:58.753 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->38
06-04 19:11:58.763 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->39
06-04 19:11:58.774 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->40
06-04 19:11:58.794 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->41
06-04 19:11:58.804 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->42
06-04 19:11:58.814 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->43
06-04 19:11:58.824 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->44
06-04 19:11:58.834 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->45
06-04 19:11:58.844 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->46
06-04 19:11:58.864 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->47
06-04 19:11:58.874 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->48
06-04 19:11:58.884 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->49
06-04 19:11:58.894 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->50
06-04 19:11:58.904 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->51
06-04 19:11:58.924 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->52
06-04 19:11:58.934 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->53
06-04 19:11:58.944 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->54
06-04 19:11:58.954 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->55
06-04 19:11:58.964 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->56
06-04 19:11:58.974 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->57
06-04 19:11:58.984 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->58
06-04 19:11:58.994 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->59
06-04 19:11:59.004 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->60
06-04 19:11:59.014 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->61
06-04 19:11:59.034 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->62
06-04 19:11:59.044 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->63
06-04 19:11:59.054 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->64
06-04 19:11:59.064 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->65
06-04 19:11:59.074 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->66
06-04 19:11:59.084 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->67
06-04 19:11:59.094 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->68
06-04 19:11:59.114 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->69
06-04 19:11:59.124 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->70
06-04 19:11:59.134 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->71
06-04 19:11:59.144 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->72
06-04 19:11:59.154 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->73
06-04 19:11:59.164 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->74
06-04 19:11:59.184 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->75
06-04 19:11:59.194 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->76
06-04 19:11:59.204 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->77
06-04 19:11:59.224 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->78
06-04 19:11:59.234 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->79
06-04 19:11:59.244 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->80
06-04 19:11:59.264 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->81
06-04 19:11:59.274 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->82
06-04 19:11:59.284 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->83
06-04 19:11:59.294 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->84
06-04 19:11:59.304 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->85
06-04 19:11:59.314 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->86
06-04 19:11:59.334 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->87
06-04 19:11:59.344 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->88
06-04 19:11:59.354 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->89
06-04 19:11:59.364 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->90
06-04 19:11:59.374 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->91
06-04 19:11:59.384 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->92
06-04 19:11:59.404 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->93
06-04 19:11:59.414 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->94
06-04 19:11:59.424 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->95
06-04 19:11:59.434 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->96
06-04 19:11:59.444 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->97
06-04 19:11:59.454 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->98
06-04 19:11:59.474 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->99
06-04 19:11:59.484 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->100
06-04 19:11:59.494 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->101
06-04 19:11:59.504 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->102
06-04 19:11:59.514 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->103
06-04 19:11:59.524 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->104
06-04 19:11:59.544 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->105
06-04 19:11:59.554 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->106
06-04 19:11:59.564 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->107
06-04 19:11:59.574 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->108
06-04 19:11:59.584 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->109
06-04 19:11:59.594 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->110
06-04 19:11:59.614 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->111
06-04 19:11:59.624 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->112
06-04 19:11:59.634 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->113
06-04 19:11:59.644 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->114
06-04 19:11:59.654 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->115
06-04 19:11:59.664 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->116
06-04 19:11:59.684 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->117
06-04 19:11:59.694 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->118
06-04 19:11:59.704 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->119
06-04 19:11:59.714 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->120
06-04 19:11:59.744 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->121
06-04 19:11:59.754 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->122
06-04 19:11:59.764 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->123
06-04 19:11:59.774 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->124
06-04 19:11:59.784 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->125
06-04 19:11:59.795 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->126
06-04 19:11:59.805 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->127
06-04 19:11:59.815 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->128
06-04 19:11:59.825 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->129
06-04 19:11:59.835 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->130
06-04 19:11:59.845 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->131
06-04 19:11:59.855 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->132
06-04 19:11:59.875 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->133
06-04 19:11:59.885 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->134
06-04 19:11:59.895 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->135
06-04 19:11:59.905 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->136
06-04 19:11:59.915 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->137
06-04 19:11:59.925 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->138
06-04 19:11:59.935 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->139
06-04 19:11:59.945 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->140
06-04 19:11:59.955 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->141
06-04 19:11:59.965 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->142
06-04 19:11:59.975 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->143
06-04 19:11:59.985 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->144
06-04 19:12:00.015 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->145
06-04 19:12:00.025 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->146
06-04 19:12:00.035 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->147
06-04 19:12:00.045 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->148
06-04 19:12:00.055 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->149
06-04 19:12:00.065 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射---->150
06-04 19:12:00.075 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1发射数据结束1559646720079

Request(20) : 点击之后会有输出

06-04 19:13:01.385 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->10
06-04 19:13:01.405 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->11
06-04 19:13:01.425 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->12
06-04 19:13:01.445 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->13
06-04 19:13:01.465 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->14
06-04 19:13:01.485 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->15
06-04 19:13:01.515 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->16
06-04 19:13:01.535 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->17
06-04 19:13:01.555 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->18
06-04 19:13:01.575 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->19
06-04 19:13:01.595 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->20
06-04 19:13:01.615 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->21
06-04 19:13:01.635 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->22
06-04 19:13:01.655 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->23
06-04 19:13:01.675 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->24
06-04 19:13:01.695 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->25
06-04 19:13:01.715 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->26
06-04 19:13:01.735 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->27
06-04 19:13:01.765 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->28
06-04 19:13:01.785 4987-4987/com.example.rxjavabackpressure D/MainActivity: 1接收---------->29

DROP:

06-04 19:15:22.863 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1开始发射数据1559646922871
06-04 19:15:22.863 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->0
06-04 19:15:22.883 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->0
06-04 19:15:22.893 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->1
06-04 19:15:22.913 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->1
06-04 19:15:22.923 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->2
06-04 19:15:22.943 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->2
06-04 19:15:22.953 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->3
06-04 19:15:22.973 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->3
06-04 19:15:22.993 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->4
06-04 19:15:23.013 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->4
06-04 19:15:23.023 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->5
06-04 19:15:23.043 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->5
06-04 19:15:23.053 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->6
06-04 19:15:23.073 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->6
06-04 19:15:23.083 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->7
06-04 19:15:23.103 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->7
06-04 19:15:23.113 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->8
06-04 19:15:23.133 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->8
06-04 19:15:23.143 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->9
06-04 19:15:23.163 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收---------->9
06-04 19:15:23.183 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->10
06-04 19:15:23.193 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->11
06-04 19:15:23.203 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->12
06-04 19:15:23.213 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->13
06-04 19:15:23.223 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->14
06-04 19:15:23.233 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->15
06-04 19:15:23.243 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->16
06-04 19:15:23.263 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->17
06-04 19:15:23.273 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->18
06-04 19:15:23.283 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->19
06-04 19:15:23.293 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->20
06-04 19:15:23.303 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->21
06-04 19:15:23.323 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->22
06-04 19:15:23.333 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->23
06-04 19:15:23.343 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->24
06-04 19:15:23.353 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->25
06-04 19:15:23.363 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->26
06-04 19:15:23.373 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->27
06-04 19:15:23.383 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->28
06-04 19:15:23.403 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->29
06-04 19:15:23.413 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->30
06-04 19:15:23.423 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->31
06-04 19:15:23.433 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->32
06-04 19:15:23.443 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->33
06-04 19:15:23.453 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->34
06-04 19:15:23.463 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->35
06-04 19:15:23.483 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->36
06-04 19:15:23.493 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->37
06-04 19:15:23.503 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->38
06-04 19:15:23.513 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->39
06-04 19:15:23.523 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->40
06-04 19:15:23.533 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->41
06-04 19:15:23.543 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->42
06-04 19:15:23.563 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->43
06-04 19:15:23.573 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->44
06-04 19:15:23.583 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->45
06-04 19:15:23.593 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->46
06-04 19:15:23.603 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->47
06-04 19:15:23.613 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->48
06-04 19:15:23.623 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->49
06-04 19:15:23.633 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->50
06-04 19:15:23.653 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->51
06-04 19:15:23.663 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->52
06-04 19:15:23.673 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->53
06-04 19:15:23.683 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->54
06-04 19:15:23.693 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->55
06-04 19:15:23.703 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->56
06-04 19:15:23.713 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->57
06-04 19:15:23.723 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->58
06-04 19:15:23.743 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->59
06-04 19:15:23.753 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->60
06-04 19:15:23.763 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->61
06-04 19:15:23.774 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->62
06-04 19:15:23.784 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->63
06-04 19:15:23.794 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->64
06-04 19:15:23.814 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->65
06-04 19:15:23.824 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->66
06-04 19:15:23.834 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->67
06-04 19:15:23.844 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->68
06-04 19:15:23.854 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->69
06-04 19:15:23.864 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->70
06-04 19:15:23.874 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->71
06-04 19:15:23.894 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->72
06-04 19:15:23.904 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->73
06-04 19:15:23.914 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->74
06-04 19:15:23.924 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->75
06-04 19:15:23.934 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->76
06-04 19:15:23.944 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->77
06-04 19:15:23.954 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->78
06-04 19:15:23.974 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->79
06-04 19:15:23.984 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->80
06-04 19:15:23.994 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->81
06-04 19:15:24.004 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->82
06-04 19:15:24.014 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->83
06-04 19:15:24.024 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->84
06-04 19:15:24.044 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->85
06-04 19:15:24.054 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->86
06-04 19:15:24.064 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->87
06-04 19:15:24.074 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->88
06-04 19:15:24.094 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->89
06-04 19:15:24.104 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->90
06-04 19:15:24.114 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->91
06-04 19:15:24.124 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->92
06-04 19:15:24.134 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->93
06-04 19:15:24.144 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->94
06-04 19:15:24.164 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->95
06-04 19:15:24.174 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->96
06-04 19:15:24.184 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->97
06-04 19:15:24.194 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->98
06-04 19:15:24.204 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->99
06-04 19:15:24.214 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->100
06-04 19:15:24.224 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->101
06-04 19:15:24.244 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->102
06-04 19:15:24.254 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->103
06-04 19:15:24.264 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->104
06-04 19:15:24.274 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->105
06-04 19:15:24.284 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->106
06-04 19:15:24.294 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->107
06-04 19:15:24.314 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->108
06-04 19:15:24.324 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->109
06-04 19:15:24.334 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->110
06-04 19:15:24.344 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->111
06-04 19:15:24.354 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->112
06-04 19:15:24.364 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->113
06-04 19:15:24.374 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->114
06-04 19:15:24.384 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->115
06-04 19:15:24.404 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->116
06-04 19:15:24.414 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->117
06-04 19:15:24.424 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->118
06-04 19:15:24.434 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->119
06-04 19:15:24.444 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->120
06-04 19:15:24.454 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->121
06-04 19:15:24.474 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->122
06-04 19:15:24.484 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->123
06-04 19:15:24.494 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->124
06-04 19:15:24.504 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->125
06-04 19:15:24.514 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->126
06-04 19:15:24.524 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->127
06-04 19:15:24.534 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->128
06-04 19:15:24.544 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->129
06-04 19:15:24.564 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->130
06-04 19:15:24.574 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->131
06-04 19:15:24.584 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->132
06-04 19:15:24.594 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->133
06-04 19:15:24.604 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->134
06-04 19:15:24.614 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->135
06-04 19:15:24.634 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->136
06-04 19:15:24.644 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->137
06-04 19:15:24.654 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->138
06-04 19:15:24.664 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->139
06-04 19:15:24.674 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->140
06-04 19:15:24.694 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->141
06-04 19:15:24.704 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->142
06-04 19:15:24.714 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->143
06-04 19:15:24.724 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->144
06-04 19:15:24.744 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->145
06-04 19:15:24.754 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->146
06-04 19:15:24.764 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->147
06-04 19:15:24.774 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->148
06-04 19:15:24.784 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->149
06-04 19:15:24.795 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射---->150
06-04 19:15:24.805 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1发射数据结束1559646924816
06-04 19:15:24.815 5322-5322/com.example.rxjavabackpressure D/MainActivity: 1接收----> 完成

request(20) 不再有输出

Latest:

06-04 19:17:31.718 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1开始发射数据1559647051735
06-04 19:17:31.728 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->0
06-04 19:17:31.748 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->0
06-04 19:17:31.758 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->1
06-04 19:17:31.778 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->1
06-04 19:17:31.788 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->2
06-04 19:17:31.808 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->2
06-04 19:17:31.818 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->3
06-04 19:17:31.838 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->3
06-04 19:17:31.848 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->4
06-04 19:17:31.868 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->4
06-04 19:17:31.878 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->5
06-04 19:17:31.899 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->5
06-04 19:17:31.909 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->6
06-04 19:17:31.939 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->6
06-04 19:17:31.949 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->7
06-04 19:17:31.969 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->7
06-04 19:17:31.979 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->8
06-04 19:17:31.999 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->8
06-04 19:17:32.009 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->9
06-04 19:17:32.029 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->9
06-04 19:17:32.039 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->10
06-04 19:17:32.049 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->11
06-04 19:17:32.069 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->12
06-04 19:17:32.079 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->13
06-04 19:17:32.089 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->14
06-04 19:17:32.099 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->15
06-04 19:17:32.109 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->16
06-04 19:17:32.159 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->17
06-04 19:17:32.189 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->18
06-04 19:17:32.199 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->19
06-04 19:17:32.209 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->20
06-04 19:17:32.219 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->21
06-04 19:17:32.229 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->22
06-04 19:17:32.239 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->23
06-04 19:17:32.249 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->24
06-04 19:17:32.259 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->25
06-04 19:17:32.269 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->26
06-04 19:17:32.289 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->27
06-04 19:17:32.299 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->28
06-04 19:17:32.309 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->29
06-04 19:17:32.319 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->30
06-04 19:17:32.329 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->31
06-04 19:17:32.339 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->32
06-04 19:17:32.349 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->33
06-04 19:17:32.359 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->34
06-04 19:17:32.369 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->35
06-04 19:17:32.389 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->36
06-04 19:17:32.399 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->37
06-04 19:17:32.409 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->38
06-04 19:17:32.419 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->39
06-04 19:17:32.429 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->40
06-04 19:17:32.439 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->41
06-04 19:17:32.449 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->42
06-04 19:17:32.459 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->43
06-04 19:17:32.479 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->44
06-04 19:17:32.489 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->45
06-04 19:17:32.499 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->46
06-04 19:17:32.509 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->47
06-04 19:17:32.519 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->48
06-04 19:17:32.529 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->49
06-04 19:17:32.539 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->50
06-04 19:17:32.559 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->51
06-04 19:17:32.569 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->52
06-04 19:17:32.579 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->53
06-04 19:17:32.589 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->54
06-04 19:17:32.599 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->55
06-04 19:17:32.609 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->56
06-04 19:17:32.619 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->57
06-04 19:17:32.639 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->58
06-04 19:17:32.649 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->59
06-04 19:17:32.659 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->60
06-04 19:17:32.669 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->61
06-04 19:17:32.679 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->62
06-04 19:17:32.689 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->63
06-04 19:17:32.709 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->64
06-04 19:17:32.719 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->65
06-04 19:17:32.729 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->66
06-04 19:17:32.739 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->67
06-04 19:17:32.749 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->68
06-04 19:17:32.759 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->69
06-04 19:17:32.769 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->70
06-04 19:17:32.789 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->71
06-04 19:17:32.799 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->72
06-04 19:17:32.809 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->73
06-04 19:17:32.819 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->74
06-04 19:17:32.829 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->75
06-04 19:17:32.839 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->76
06-04 19:17:32.849 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->77
06-04 19:17:32.869 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->78
06-04 19:17:32.879 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->79
06-04 19:17:32.889 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->80
06-04 19:17:32.899 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->81
06-04 19:17:32.909 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->82
06-04 19:17:32.920 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->83
06-04 19:17:32.930 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->84
06-04 19:17:32.950 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->85
06-04 19:17:32.960 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->86
06-04 19:17:32.970 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->87
06-04 19:17:32.980 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->88
06-04 19:17:32.990 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->89
06-04 19:17:33.000 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->90
06-04 19:17:33.010 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->91
06-04 19:17:33.020 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->92
06-04 19:17:33.040 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->93
06-04 19:17:33.050 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->94
06-04 19:17:33.060 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->95
06-04 19:17:33.070 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->96
06-04 19:17:33.080 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->97
06-04 19:17:33.090 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->98
06-04 19:17:33.100 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->99
06-04 19:17:33.120 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->100
06-04 19:17:33.130 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->101
06-04 19:17:33.140 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->102
06-04 19:17:33.150 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->103
06-04 19:17:33.160 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->104
06-04 19:17:33.170 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->105
06-04 19:17:33.180 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->106
06-04 19:17:33.200 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->107
06-04 19:17:33.210 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->108
06-04 19:17:33.220 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->109
06-04 19:17:33.230 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->110
06-04 19:17:33.240 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->111
06-04 19:17:33.250 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->112
06-04 19:17:33.260 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->113
06-04 19:17:33.280 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->114
06-04 19:17:33.290 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->115
06-04 19:17:33.300 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->116
06-04 19:17:33.310 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->117
06-04 19:17:33.320 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->118
06-04 19:17:33.330 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->119
06-04 19:17:33.340 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->120
06-04 19:17:33.360 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->121
06-04 19:17:33.370 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->122
06-04 19:17:33.380 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->123
06-04 19:17:33.390 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->124
06-04 19:17:33.400 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->125
06-04 19:17:33.410 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->126
06-04 19:17:33.420 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->127
06-04 19:17:33.440 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->128
06-04 19:17:33.450 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->129
06-04 19:17:33.460 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->130
06-04 19:17:33.470 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->131
06-04 19:17:33.480 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->132
06-04 19:17:33.490 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->133
06-04 19:17:33.500 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->134
06-04 19:17:33.510 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->135
06-04 19:17:33.530 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->136
06-04 19:17:33.540 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->137
06-04 19:17:33.550 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->138
06-04 19:17:33.560 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->139
06-04 19:17:33.570 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->140
06-04 19:17:33.580 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->141
06-04 19:17:33.590 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->142
06-04 19:17:33.630 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->143
06-04 19:17:33.640 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->144
06-04 19:17:33.650 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->145
06-04 19:17:33.670 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->146
06-04 19:17:33.680 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->147
06-04 19:17:33.690 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->148
06-04 19:17:33.700 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->149
06-04 19:17:33.710 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射---->150
06-04 19:17:33.720 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1发射数据结束1559647053729

request(20) 之后会继续输出。

06-04 19:17:36.723 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收---------->150
06-04 19:17:36.723 5577-5577/com.example.rxjavabackpressure D/MainActivity: 1接收----> 完成

转载于:https://www.jianshu.com/p/c7191cd70c22

猜你喜欢

转载自blog.csdn.net/weixin_34405332/article/details/91156421