@@ -1412,15 +1412,15 @@ public final Completable delay(final long delay, final TimeUnit unit, final Sche
1412
1412
* <dt><b>Scheduler:</b></dt>
1413
1413
* <dd>This version of {@code delaySubscription} operates by default on the {@code computation} {@link Scheduler}.</dd>
1414
1414
* </dl>
1415
+ * <p>History: 2.2.3 - experimental
1415
1416
*
1416
1417
* @param delay the time to delay the subscription
1417
1418
* @param unit the time unit of {@code delay}
1418
1419
* @return a Completable that delays the subscription to the source CompletableSource by the given amount
1419
- * @since 2.2.3 - experimental
1420
+ * @since 3.0.0
1420
1421
* @see <a href="http://reactivex.io/documentation/operators/delay.html">ReactiveX operators documentation: Delay</a>
1421
1422
*/
1422
1423
@ CheckReturnValue
1423
- @ Experimental
1424
1424
@ SchedulerSupport (SchedulerSupport .COMPUTATION )
1425
1425
public final Completable delaySubscription (long delay , TimeUnit unit ) {
1426
1426
return delaySubscription (delay , unit , Schedulers .computation ());
@@ -1435,17 +1435,16 @@ public final Completable delaySubscription(long delay, TimeUnit unit) {
1435
1435
* <dt><b>Scheduler:</b></dt>
1436
1436
* <dd>You specify which {@link Scheduler} this operator will use.</dd>
1437
1437
* </dl>
1438
- *
1438
+ * <p>History: 2.2.3 - experimental
1439
1439
* @param delay the time to delay the subscription
1440
1440
* @param unit the time unit of {@code delay}
1441
1441
* @param scheduler the Scheduler on which the waiting and subscription will happen
1442
1442
* @return a Completable that delays the subscription to the source CompletableSource by a given
1443
1443
* amount, waiting and subscribing on the given Scheduler
1444
- * @since 2.2.3 - experimental
1444
+ * @since 3.0.0
1445
1445
* @see <a href="http://reactivex.io/documentation/operators/delay.html">ReactiveX operators documentation: Delay</a>
1446
1446
*/
1447
1447
@ CheckReturnValue
1448
- @ Experimental
1449
1448
@ SchedulerSupport (SchedulerSupport .CUSTOM )
1450
1449
public final Completable delaySubscription (long delay , TimeUnit unit , Scheduler scheduler ) {
1451
1450
return Completable .timer (delay , unit , scheduler ).andThen (this );
@@ -1809,12 +1808,12 @@ public final Completable lift(final CompletableOperator onLift) {
1809
1808
* <dt><b>Scheduler:</b></dt>
1810
1809
* <dd>{@code materialize} does not operate by default on a particular {@link Scheduler}.</dd>
1811
1810
* </dl>
1811
+ * <p>History: 2.2.4 - experimental
1812
1812
* @param <T> the intended target element type of the notification
1813
1813
* @return the new Single instance
1814
- * @since 2.2.4 - experimental
1814
+ * @since 3.0.0
1815
1815
* @see Single#dematerialize(Function)
1816
1816
*/
1817
- @ Experimental
1818
1817
@ CheckReturnValue
1819
1818
@ SchedulerSupport (SchedulerSupport .NONE )
1820
1819
public final <T > Single <Notification <T >> materialize () {
0 commit comments