@@ -928,16 +928,6 @@ public static Completable onAssembly(Completable source) {
928
928
return source ;
929
929
}
930
930
931
- /**
932
- * Create an instance of the default {@link Scheduler} used for {@link Schedulers#computation()}.
933
- * @return the created Scheduler instance
934
- * @since 2.0.5 - experimental
935
- */
936
- @ Experimental
937
- public static Scheduler newComputation () {
938
- return new ComputationScheduler ();
939
- }
940
-
941
931
/**
942
932
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#computation()}
943
933
* except using {@code threadFactory} for thread creation.
@@ -951,16 +941,6 @@ public static Scheduler newComputation(ThreadFactory threadFactory) {
951
941
return new ComputationScheduler (ObjectHelper .requireNonNull (threadFactory , "threadFactory is null" ));
952
942
}
953
943
954
- /**
955
- * Create an instance of the default {@link Scheduler} used for {@link Schedulers#io()}.
956
- * @return the created Scheduler instance
957
- * @since 2.0.5 - experimental
958
- */
959
- @ Experimental
960
- public static Scheduler newIo () {
961
- return new IoScheduler ();
962
- }
963
-
964
944
/**
965
945
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#io()}
966
946
* except using {@code threadFactory} for thread creation.
@@ -974,16 +954,6 @@ public static Scheduler newIo(ThreadFactory threadFactory) {
974
954
return new IoScheduler (ObjectHelper .requireNonNull (threadFactory , "threadFactory is null" ));
975
955
}
976
956
977
- /**
978
- * Create an instance of the default {@link Scheduler} used for {@link Schedulers#newThread()}.
979
- * @return the created Scheduler instance
980
- * @since 2.0.5 - experimental
981
- */
982
- @ Experimental
983
- public static Scheduler newNewThread () {
984
- return new NewThreadScheduler ();
985
- }
986
-
987
957
/**
988
958
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#newThread()}
989
959
* except using {@code threadFactory} for thread creation.
@@ -997,16 +967,6 @@ public static Scheduler newNewThread(ThreadFactory threadFactory) {
997
967
return new NewThreadScheduler (ObjectHelper .requireNonNull (threadFactory , "threadFactory is null" ));
998
968
}
999
969
1000
- /**
1001
- * Create an instance of the default {@link Scheduler} used for {@link Schedulers#single()}.
1002
- * @return the created Scheduler instance
1003
- * @since 2.0.5 - experimental
1004
- */
1005
- @ Experimental
1006
- public static Scheduler newSingle () {
1007
- return new SingleScheduler ();
1008
- }
1009
-
1010
970
/**
1011
971
* Create an instance of the default {@link Scheduler} used for {@link Schedulers#single()}
1012
972
* except using {@code threadFactory} for thread creation.
0 commit comments