|
30 | 30 | * <p> |
31 | 31 | * <strong>Supported system properties ({@code System.getProperty()}):</strong> |
32 | 32 | * <ul> |
33 | | - * <li>{@code rx2.io-keep-alive-time} (long): sets the keep-alive time of the {@link #io()} Scheduler workers, default is {@link IoScheduler#KEEP_ALIVE_TIME_DEFAULT}</li> |
34 | | - * <li>{@code rx2.io-priority} (int): sets the thread priority of the {@link #io()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
35 | | - * <li>{@code rx2.computation-threads} (int): sets the number of threads in the {@link #computation()} Scheduler, default is the number of available CPUs</li> |
36 | | - * <li>{@code rx2.computation-priority} (int): sets the thread priority of the {@link #computation()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
37 | | - * <li>{@code rx2.newthread-priority} (int): sets the thread priority of the {@link #newThread()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
38 | | - * <li>{@code rx2.single-priority} (int): sets the thread priority of the {@link #single()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
39 | | - * <li>{@code rx2.purge-enabled} (boolean): enables periodic purging of all Scheduler's backing thread pools, default is false</li> |
40 | | - * <li>{@code rx2.purge-period-seconds} (int): specifies the periodic purge interval of all Scheduler's backing thread pools, default is 1 second</li> |
| 33 | + * <li>{@code rx3.io-keep-alive-time} (long): sets the keep-alive time of the {@link #io()} Scheduler workers, default is {@link IoScheduler#KEEP_ALIVE_TIME_DEFAULT}</li> |
| 34 | + * <li>{@code rx3.io-priority} (int): sets the thread priority of the {@link #io()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 35 | + * <li>{@code rx3.computation-threads} (int): sets the number of threads in the {@link #computation()} Scheduler, default is the number of available CPUs</li> |
| 36 | + * <li>{@code rx3.computation-priority} (int): sets the thread priority of the {@link #computation()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 37 | + * <li>{@code rx3.newthread-priority} (int): sets the thread priority of the {@link #newThread()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 38 | + * <li>{@code rx3.single-priority} (int): sets the thread priority of the {@link #single()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 39 | + * <li>{@code rx3.purge-enabled} (boolean): enables periodic purging of all Scheduler's backing thread pools, default is false</li> |
| 40 | + * <li>{@code rx3.purge-period-seconds} (int): specifies the periodic purge interval of all Scheduler's backing thread pools, default is 1 second</li> |
41 | 41 | * </ul> |
42 | 42 | */ |
43 | 43 | public final class Schedulers { |
@@ -112,8 +112,8 @@ private Schedulers() { |
112 | 112 | * before the {@link Schedulers} class is referenced in your code. |
113 | 113 | * <p><strong>Supported system properties ({@code System.getProperty()}):</strong> |
114 | 114 | * <ul> |
115 | | - * <li>{@code rx2.computation-threads} (int): sets the number of threads in the {@link #computation()} Scheduler, default is the number of available CPUs</li> |
116 | | - * <li>{@code rx2.computation-priority} (int): sets the thread priority of the {@link #computation()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 115 | + * <li>{@code rx3.computation-threads} (int): sets the number of threads in the {@link #computation()} Scheduler, default is the number of available CPUs</li> |
| 116 | + * <li>{@code rx3.computation-priority} (int): sets the thread priority of the {@link #computation()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
117 | 117 | * </ul> |
118 | 118 | * <p> |
119 | 119 | * The default value of this scheduler can be overridden at initialization time via the |
@@ -157,8 +157,8 @@ public static Scheduler computation() { |
157 | 157 | * before the {@link Schedulers} class is referenced in your code. |
158 | 158 | * <p><strong>Supported system properties ({@code System.getProperty()}):</strong> |
159 | 159 | * <ul> |
160 | | - * <li>{@code rx2.io-keep-alive-time} (long): sets the keep-alive time of the {@link #io()} Scheduler workers, default is {@link IoScheduler#KEEP_ALIVE_TIME_DEFAULT}</li> |
161 | | - * <li>{@code rx2.io-priority} (int): sets the thread priority of the {@link #io()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 160 | + * <li>{@code rx3.io-keep-alive-time} (long): sets the keep-alive time of the {@link #io()} Scheduler workers, default is {@link IoScheduler#KEEP_ALIVE_TIME_DEFAULT}</li> |
| 161 | + * <li>{@code rx3.io-priority} (int): sets the thread priority of the {@link #io()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
162 | 162 | * </ul> |
163 | 163 | * <p> |
164 | 164 | * The default value of this scheduler can be overridden at initialization time via the |
@@ -216,7 +216,7 @@ public static Scheduler trampoline() { |
216 | 216 | * before the {@link Schedulers} class is referenced in your code. |
217 | 217 | * <p><strong>Supported system properties ({@code System.getProperty()}):</strong> |
218 | 218 | * <ul> |
219 | | - * <li>{@code rx2.newthread-priority} (int): sets the thread priority of the {@link #newThread()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 219 | + * <li>{@code rx3.newthread-priority} (int): sets the thread priority of the {@link #newThread()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
220 | 220 | * </ul> |
221 | 221 | * <p> |
222 | 222 | * The default value of this scheduler can be overridden at initialization time via the |
@@ -265,7 +265,7 @@ public static Scheduler newThread() { |
265 | 265 | * before the {@link Schedulers} class is referenced in your code. |
266 | 266 | * <p><strong>Supported system properties ({@code System.getProperty()}):</strong> |
267 | 267 | * <ul> |
268 | | - * <li>{@code rx2.single-priority} (int): sets the thread priority of the {@link #single()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
| 268 | + * <li>{@code rx3.single-priority} (int): sets the thread priority of the {@link #single()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li> |
269 | 269 | * </ul> |
270 | 270 | * <p> |
271 | 271 | * The default value of this scheduler can be overridden at initialization time via the |
|
0 commit comments