@@ -1412,15 +1412,15 @@ public final Completable delay(final long delay, final TimeUnit unit, final Sche
14121412 * <dt><b>Scheduler:</b></dt>
14131413 * <dd>This version of {@code delaySubscription} operates by default on the {@code computation} {@link Scheduler}.</dd>
14141414 * </dl>
1415+ * <p>History: 2.2.3 - experimental
14151416 *
14161417 * @param delay the time to delay the subscription
14171418 * @param unit the time unit of {@code delay}
14181419 * @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
14201421 * @see <a href="http://reactivex.io/documentation/operators/delay.html">ReactiveX operators documentation: Delay</a>
14211422 */
14221423 @ CheckReturnValue
1423- @ Experimental
14241424 @ SchedulerSupport (SchedulerSupport .COMPUTATION )
14251425 public final Completable delaySubscription (long delay , TimeUnit unit ) {
14261426 return delaySubscription (delay , unit , Schedulers .computation ());
@@ -1435,17 +1435,16 @@ public final Completable delaySubscription(long delay, TimeUnit unit) {
14351435 * <dt><b>Scheduler:</b></dt>
14361436 * <dd>You specify which {@link Scheduler} this operator will use.</dd>
14371437 * </dl>
1438- *
1438+ * <p>History: 2.2.3 - experimental
14391439 * @param delay the time to delay the subscription
14401440 * @param unit the time unit of {@code delay}
14411441 * @param scheduler the Scheduler on which the waiting and subscription will happen
14421442 * @return a Completable that delays the subscription to the source CompletableSource by a given
14431443 * amount, waiting and subscribing on the given Scheduler
1444- * @since 2.2.3 - experimental
1444+ * @since 3.0.0
14451445 * @see <a href="http://reactivex.io/documentation/operators/delay.html">ReactiveX operators documentation: Delay</a>
14461446 */
14471447 @ CheckReturnValue
1448- @ Experimental
14491448 @ SchedulerSupport (SchedulerSupport .CUSTOM )
14501449 public final Completable delaySubscription (long delay , TimeUnit unit , Scheduler scheduler ) {
14511450 return Completable .timer (delay , unit , scheduler ).andThen (this );
@@ -1809,12 +1808,12 @@ public final Completable lift(final CompletableOperator onLift) {
18091808 * <dt><b>Scheduler:</b></dt>
18101809 * <dd>{@code materialize} does not operate by default on a particular {@link Scheduler}.</dd>
18111810 * </dl>
1811+ * <p>History: 2.2.4 - experimental
18121812 * @param <T> the intended target element type of the notification
18131813 * @return the new Single instance
1814- * @since 2.2.4 - experimental
1814+ * @since 3.0.0
18151815 * @see Single#dematerialize(Function)
18161816 */
1817- @ Experimental
18181817 @ CheckReturnValue
18191818 @ SchedulerSupport (SchedulerSupport .NONE )
18201819 public final <T > Single <Notification <T >> materialize () {
0 commit comments