Skip to content

Commit 31c2160

Browse files
committed
fix imgs in Backpressure.md
1 parent 09eb650 commit 31c2160

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

topics/Backpressure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ For this to work, though, Observables _A_ and _B_ must respond correctly to the
158158

159159
<dl>
160160
<dt><tt>onBackpressureBuffer</tt></dt>
161-
<dd>maintains a buffer of all emissions from the source Observable and emits them to downstream Subscribers according to the <tt>request</tt>s they generate<br /><img src="/ReactiveX/RxJava/wiki/images/rx-operators/bp.obp.buffer.png" width="640" height="300" /><br />an experimental version of this operator (not available in RxJava 1.0) allows you to set the capacity of the buffer; applying this operator will cause the resulting Observable to terminate with an error if this buffer is overrun​</dd>
161+
<dd>maintains a buffer of all emissions from the source Observable and emits them to downstream Subscribers according to the <tt>request</tt>s they generate<br /><img src="/images/operators/bp.obp.buffer.png" width="640" height="300" /><br />an experimental version of this operator (not available in RxJava 1.0) allows you to set the capacity of the buffer; applying this operator will cause the resulting Observable to terminate with an error if this buffer is overrun​</dd>
162162
<dt><tt>onBackpressureDrop</tt></dt>
163163
<dd>drops emissions from the source Observable unless there is a pending <tt>request</tt> from a downstream Subscriber, in which case it will emit enough items to fulfill the request<br /><img src="/images/operators/bp.obp.drop.png" width="640" height="245" />​</dd>
164164
<dt><tt>onBackpressureBlock</tt> <em style="color: #f00;">(experimental, not in RxJava 1.0)</em></dt>

0 commit comments

Comments
 (0)