Skip to content

Commit d42b645

Browse files
Migrate Schedulers to rx.schedulers package
1 parent 80177f0 commit d42b645

12 files changed

+12
-12
lines changed

rxjava-core/src/main/java/rx/concurrency/CurrentThreadScheduler.java renamed to rxjava-core/src/main/java/rx/schedulers/CurrentThreadScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import java.util.PriorityQueue;
1919
import java.util.concurrent.TimeUnit;

rxjava-core/src/test/java/rx/concurrency/CurrentThreadSchedulerTest.java renamed to rxjava-core/src/main/java/rx/schedulers/CurrentThreadSchedulerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import static org.mockito.Mockito.*;
1919

rxjava-core/src/main/java/rx/concurrency/DiscardableAction.java renamed to rxjava-core/src/main/java/rx/schedulers/DiscardableAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import java.util.concurrent.atomic.AtomicBoolean;
1919

rxjava-core/src/main/java/rx/concurrency/ExecutorScheduler.java renamed to rxjava-core/src/main/java/rx/schedulers/ExecutorScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import java.util.concurrent.Executor;
1919
import java.util.concurrent.ExecutorService;

rxjava-core/src/main/java/rx/concurrency/GenericScheduledExecutorService.java renamed to rxjava-core/src/main/java/rx/schedulers/GenericScheduledExecutorService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import java.util.concurrent.Executor;
1919
import java.util.concurrent.ExecutorService;

rxjava-core/src/main/java/rx/concurrency/ImmediateScheduler.java renamed to rxjava-core/src/main/java/rx/schedulers/ImmediateScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import java.util.concurrent.TimeUnit;
1919

rxjava-core/src/test/java/rx/concurrency/ImmediateSchedulerTest.java renamed to rxjava-core/src/main/java/rx/schedulers/ImmediateSchedulerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import static org.mockito.Mockito.*;
1919

rxjava-core/src/main/java/rx/concurrency/NewThreadScheduler.java renamed to rxjava-core/src/main/java/rx/schedulers/NewThreadScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import java.util.concurrent.ExecutorService;
1919
import java.util.concurrent.Executors;

rxjava-core/src/main/java/rx/concurrency/Schedulers.java renamed to rxjava-core/src/main/java/rx/schedulers/Schedulers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import java.util.concurrent.Executor;
1919
import java.util.concurrent.Executors;

rxjava-core/src/main/java/rx/concurrency/SleepingAction.java renamed to rxjava-core/src/main/java/rx/schedulers/SleepingAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.concurrency;
16+
package rx.schedulers;
1717

1818
import rx.Scheduler;
1919
import rx.Subscription;

0 commit comments

Comments
 (0)