@@ -299,7 +299,7 @@ public static Scheduler single() {
299299 * a time delay or periodically will use the {@link #single()} scheduler for the timed waiting
300300 * before posting the actual task to the given executor.
301301 * <p>
302- * Tasks submitted to the {@link Scheduler.Worker} of this {@code Scheduler} are also not interruptible. Use the
302+ * Tasks submitted to the {@link io.reactivex.Scheduler.Worker Scheduler.Worker} of this {@code Scheduler} are also not interruptible. Use the
303303 * {@link #from(Executor, boolean)} overload to enable task interruption via this wrapper.
304304 * <p>
305305 * If the provided executor supports the standard Java {@link ExecutorService} API,
@@ -332,7 +332,7 @@ public static Scheduler single() {
332332 * }
333333 * </code></pre>
334334 * <p>
335- * This type of scheduler is less sensitive to leaking {@link Scheduler.Worker} instances, although
335+ * This type of scheduler is less sensitive to leaking {@link io.reactivex.Scheduler.Worker Scheduler.Worker} instances, although
336336 * not disposing a worker that has timed/delayed tasks not cancelled by other means may leak resources and/or
337337 * execute those tasks "unexpectedly".
338338 * <p>
@@ -350,7 +350,7 @@ public static Scheduler from(@NonNull Executor executor) {
350350 * Wraps an {@link Executor} into a new Scheduler instance and delegates {@code schedule()}
351351 * calls to it.
352352 * <p>
353- * The tasks scheduled by the returned {@link Scheduler} and its {@link Scheduler.Worker}
353+ * The tasks scheduled by the returned {@link Scheduler} and its {@link io.reactivex.Scheduler.Worker Scheduler.Worker}
354354 * can be optionally interrupted.
355355 * <p>
356356 * If the provided executor doesn't support any of the more specific standard Java executor
@@ -388,14 +388,14 @@ public static Scheduler from(@NonNull Executor executor) {
388388 * }
389389 * </code></pre>
390390 * <p>
391- * This type of scheduler is less sensitive to leaking {@link Scheduler.Worker} instances, although
391+ * This type of scheduler is less sensitive to leaking {@link io.reactivex.Scheduler.Worker Scheduler.Worker} instances, although
392392 * not disposing a worker that has timed/delayed tasks not cancelled by other means may leak resources and/or
393393 * execute those tasks "unexpectedly".
394394 * <p>
395395 * Note that this method returns a new {@link Scheduler} instance, even for the same {@link Executor} instance.
396396 * @param executor
397397 * the executor to wrap
398- * @param interruptibleWorker if {@code true} the tasks submitted to the {@link Scheduler.Worker} will
398+ * @param interruptibleWorker if {@code true} the tasks submitted to the {@link io.reactivex.Scheduler.Worker Scheduler.Worker} will
399399 * be interrupted when the task is disposed.
400400 * @return the new Scheduler wrapping the Executor
401401 * @since 2.2.6 - experimental
0 commit comments