@@ -183,6 +183,7 @@ public static Scheduler from(Executor executor) {
183
183
/**
184
184
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#computation()}.
185
185
* @return the created Scheduler instance
186
+ * @since 2.0.5 - experimental
186
187
*/
187
188
@ Experimental
188
189
public static Scheduler newComputation () {
@@ -195,6 +196,7 @@ public static Scheduler newComputation() {
195
196
* @param threadFactory thread factory to use for creating worker threads. Note that this takes precedence over any
196
197
* system properties for configuring new thread creation. Cannot be null.
197
198
* @return the created Scheduler instance
199
+ * @since 2.0.5 - experimental
198
200
*/
199
201
@ Experimental
200
202
public static Scheduler newComputation (ThreadFactory threadFactory ) {
@@ -204,6 +206,7 @@ public static Scheduler newComputation(ThreadFactory threadFactory) {
204
206
/**
205
207
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#io()}.
206
208
* @return the created Scheduler instance
209
+ * @since 2.0.5 - experimental
207
210
*/
208
211
@ Experimental
209
212
public static Scheduler newIo () {
@@ -216,6 +219,7 @@ public static Scheduler newIo() {
216
219
* @param threadFactory thread factory to use for creating worker threads. Note that this takes precedence over any
217
220
* system properties for configuring new thread creation. Cannot be null.
218
221
* @return the created Scheduler instance
222
+ * @since 2.0.5 - experimental
219
223
*/
220
224
@ Experimental
221
225
public static Scheduler newIo (ThreadFactory threadFactory ) {
@@ -225,6 +229,7 @@ public static Scheduler newIo(ThreadFactory threadFactory) {
225
229
/**
226
230
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#newThread()}.
227
231
* @return the created Scheduler instance
232
+ * @since 2.0.5 - experimental
228
233
*/
229
234
@ Experimental
230
235
public static Scheduler newNewThread () {
@@ -237,6 +242,7 @@ public static Scheduler newNewThread() {
237
242
* @param threadFactory thread factory to use for creating worker threads. Note that this takes precedence over any
238
243
* system properties for configuring new thread creation. Cannot be null.
239
244
* @return the created Scheduler instance
245
+ * @since 2.0.5 - experimental
240
246
*/
241
247
@ Experimental
242
248
public static Scheduler newNewThread (ThreadFactory threadFactory ) {
@@ -246,6 +252,7 @@ public static Scheduler newNewThread(ThreadFactory threadFactory) {
246
252
/**
247
253
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#single()}.
248
254
* @return the created Scheduler instance
255
+ * @since 2.0.5 - experimental
249
256
*/
250
257
@ Experimental
251
258
public static Scheduler newSingle () {
@@ -258,6 +265,7 @@ public static Scheduler newSingle() {
258
265
* @param threadFactory thread factory to use for creating worker threads. Note that this takes precedence over any
259
266
* system properties for configuring new thread creation. Cannot be null.
260
267
* @return the created Scheduler instance
268
+ * @since 2.0.5 - experimental
261
269
*/
262
270
@ Experimental
263
271
public static Scheduler newSingle (ThreadFactory threadFactory ) {
0 commit comments