File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1717
1818/**
1919 * @warn javadoc description missing
20- * @since 0.20
2120 */
2221public interface Producer {
2322
@@ -27,7 +26,6 @@ public interface Producer {
2726 *
2827 * @param n the maximum number of items you want this Producer to produce, or {@code Long.MAX_VALUE} if you
2928 * want the Producer to produce items at its own pace
30- * @since 0.20
3129 */
3230 public void request (long n );
3331
Original file line number Diff line number Diff line change @@ -80,8 +80,6 @@ public final boolean isUnsubscribed() {
8080 * This method is invoked when the Subscriber and Observable have been connected but the Observable has
8181 * not yet begun to emit items or send notifications to the Subscriber. Override this method to add any
8282 * useful initialization to your subscription, for instance to initiate backpressure.
83- *
84- * @since 0.20
8583 */
8684 public void onStart () {
8785 // do nothing by default
@@ -94,7 +92,6 @@ public void onStart() {
9492 *
9593 * @param n the maximum number of items you want the Observable to emit to the Subscriber at this time, or
9694 * {@code Long.MAX_VALUE} if you want the Observable to emit items at its own pace
97- * @since 0.20
9895 */
9996 protected final void request (long n ) {
10097 Producer shouldRequest = null ;
@@ -115,7 +112,6 @@ protected final void request(long n) {
115112 * @warn javadoc description missing
116113 * @warn param producer not described
117114 * @param producer
118- * @since 0.20
119115 */
120116 public void setProducer (Producer producer ) {
121117 long toRequest ;
Original file line number Diff line number Diff line change @@ -136,8 +136,8 @@ public void onNext(T t) {
136136 /**
137137 * Allow calling the protected {@link #request(long)} from unit tests.
138138 *
139- * @param n
140- * @warn parameter "n" not described
139+ * @param n the maximum number of items you want the Observable to emit to the Subscriber at this time, or
140+ * {@code Long.MAX_VALUE} if you want the Observable to emit items at its own pace
141141 */
142142 public void requestMore (long n ) {
143143 request (n );
You can’t perform that action at this time.
0 commit comments