Skip to content

Commit 0cecfc5

Browse files
Merge pull request #2591 from akarnokd/NewThreadSchedulerSyskey
Changed the naming of the NewThreadWorker's system parameters
2 parents e382e7e + 0951cdb commit 0cecfc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/internal/schedulers/NewThreadWorker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ public class NewThreadWorker extends Scheduler.Worker implements Subscription {
3535
private final RxJavaSchedulersHook schedulersHook;
3636
volatile boolean isUnsubscribed;
3737
/** The purge frequency in milliseconds. */
38-
private static final String FREQUENCY_KEY = "io.reactivex.rxjava.scheduler.jdk6.purge-frequency-millis";
38+
private static final String FREQUENCY_KEY = "rx.scheduler.jdk6.purge-frequency-millis";
3939
/** Force the use of purge (true/false). */
40-
private static final String PURGE_FORCE_KEY = "io.reactivex.rxjava.scheduler.jdk6.purge-force";
40+
private static final String PURGE_FORCE_KEY = "rx.scheduler.jdk6.purge-force";
4141
private static final String PURGE_THREAD_PREFIX = "RxSchedulerPurge-";
4242
/** Forces the use of purge even if setRemoveOnCancelPolicy is available. */
4343
private static final boolean PURGE_FORCE;

0 commit comments

Comments
 (0)