@@ -299,7 +299,7 @@ public static Scheduler single() {
299
299
* a time delay or periodically will use the {@link #single()} scheduler for the timed waiting
300
300
* before posting the actual task to the given executor.
301
301
* <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
303
303
* {@link #from(Executor, boolean)} overload to enable task interruption via this wrapper.
304
304
* <p>
305
305
* If the provided executor supports the standard Java {@link ExecutorService} API,
@@ -332,7 +332,7 @@ public static Scheduler single() {
332
332
* }
333
333
* </code></pre>
334
334
* <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
336
336
* not disposing a worker that has timed/delayed tasks not cancelled by other means may leak resources and/or
337
337
* execute those tasks "unexpectedly".
338
338
* <p>
@@ -350,7 +350,7 @@ public static Scheduler from(@NonNull Executor executor) {
350
350
* Wraps an {@link Executor} into a new Scheduler instance and delegates {@code schedule()}
351
351
* calls to it.
352
352
* <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}
354
354
* can be optionally interrupted.
355
355
* <p>
356
356
* 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) {
388
388
* }
389
389
* </code></pre>
390
390
* <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
392
392
* not disposing a worker that has timed/delayed tasks not cancelled by other means may leak resources and/or
393
393
* execute those tasks "unexpectedly".
394
394
* <p>
395
395
* Note that this method returns a new {@link Scheduler} instance, even for the same {@link Executor} instance.
396
396
* @param executor
397
397
* 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
399
399
* be interrupted when the task is disposed.
400
400
* @return the new Scheduler wrapping the Executor
401
401
* @since 2.2.6 - experimental
0 commit comments