Skip to content

Commit 9e68dee

Browse files
committed
last work in progress changes
1 parent f697757 commit 9e68dee

File tree

188 files changed

+352
-2359
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+352
-2359
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,5 @@ crashlytics-build.properties
8787
/Assets/TempRuntimeUnitTestScene_*.unity
8888
/Assets/TempRuntimeUnitTestScene_*.unity.meta
8989
/UserSettings/Layouts
90+
91+
/Dependencies/out
File renamed without changes.

Assets/Src/Scripts/Unity/Concurrency/ThreadPoolOnlyScheduler.cs renamed to Assets/Src/Scripts/Concurrency/ThreadPoolOnlyScheduler.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
using System.Reactive.Concurrency;
1+
using System;
2+
using System.Reactive.Concurrency;
23

3-
namespace System.Reactive.Unity.Concurrency {
4+
namespace Rx.Unity.Concurrency {
45
/// <summary>
56
/// Represents an object that schedules units of work on the CLR thread pool. (This one will never fall back to the NewThreadScheduler unlike the ThreadPoolScheduler)
67
/// </summary>
File renamed without changes.

Assets/Src/Scripts/Unity/Concurrency/UnityMainThreadScheduler.cs renamed to Assets/Src/Scripts/Concurrency/UnityMainThreadScheduler.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
using System.Reactive.Disposables;
33
using System.Collections;
44
using UnityEngine;
5+
using System;
6+
using Rx.Extendibility.Disposables;
57

6-
namespace System.Reactive.Unity.Concurrency {
8+
namespace Rx.Unity.Concurrency {
79
/// <summary>
810
/// Represents an object that schedules units of work on the Unity main thread.
911
/// </summary>
File renamed without changes.

Assets/Src/Scripts/Data.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

Assets/Src/Scripts/Data/CollectionAddEvent.cs

Lines changed: 0 additions & 31 deletions
This file was deleted.

Assets/Src/Scripts/Data/CollectionAddEvent.cs.meta

Lines changed: 0 additions & 11 deletions
This file was deleted.

Assets/Src/Scripts/Data/CollectionMoveEvent.cs

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)