├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── straight_skeleton ├── README.md ├── StraightSkeletonNet.Tests │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SkeletonExtendedTest.cs │ ├── SkeletonLevelEventsTest.cs │ ├── SkeletonTest.cs │ ├── SkeletonTestUtil.cs │ ├── StraightSkeletonNet.Tests.csproj │ └── packages.config ├── StraightSkeletonNet.sln └── StraightSkeletonNet │ ├── Circular │ ├── CircularList.cs │ ├── CircularNode.cs │ ├── Edge.cs │ └── Vertex.cs │ ├── EdgeResult.cs │ ├── Events │ ├── Chains │ │ ├── ChainType.cs │ │ ├── EdgeChain.cs │ │ ├── IChain.cs │ │ ├── SingleEdgeChain.cs │ │ └── SplitChain.cs │ ├── EdgeEvent.cs │ ├── MultiEdgeEvent.cs │ ├── MultiSplitEvent.cs │ ├── PickEvent.cs │ ├── SkeletonEvent.cs │ ├── SplitEvent.cs │ └── VertexSplitEvent.cs │ ├── LavUtil.cs │ ├── Path │ ├── FaceNode.cs │ ├── FaceQueue.cs │ ├── FaceQueueUtil.cs │ ├── PathQueue.cs │ └── PathQueueNode.cs │ ├── Primitives │ ├── LineLinear2d.cs │ ├── LineParametric2d.cs │ ├── PrimitiveUtils.cs │ ├── PriorityQueue.cs │ └── Vector2d.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Skeleton.cs │ ├── SkeletonBuilder.cs │ └── StraightSkeletonNet.csproj ├── utydepend ├── UtyDepend.Tests │ ├── ContainerTests.cs │ ├── InterceptionTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Stubs │ │ ├── ClassA.cs │ │ ├── CollectionDependencyClass.cs │ │ ├── ConfigurableClass.cs │ │ ├── DummyConfigSection.cs │ │ └── PropertyClass.cs │ ├── UtyDepend.Tests.csproj │ └── packages.config ├── UtyDepend.sln └── UtyDepend │ ├── Component.cs │ ├── ComponentExtensions.cs │ ├── Config │ ├── IConfigSection.cs │ └── IConfigurable.cs │ ├── Container.cs │ ├── DependencyAttribute.cs │ ├── DependencyException.cs │ ├── IContainer.cs │ ├── Interception │ ├── Behaviors │ │ ├── ExecuteBehavior.cs │ │ └── IBehavior.cs │ ├── IInterceptor.cs │ ├── IMethodReturn.cs │ ├── IProxy.cs │ ├── InterceptionContext.cs │ ├── InterfaceInterceptor.cs │ ├── MethodInvocation.cs │ ├── MethodReturn.cs │ └── ProxyBase.cs │ ├── Lifetime │ ├── ContainerLifetimeManager.cs │ ├── ExternalLifetimeManager.cs │ ├── ILifetimeManager.cs │ ├── SingletonLifetimeManager.cs │ └── TransientLifetimeManager.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Utils │ ├── Guard.cs │ ├── ProxyGen.cs │ └── TypeHelper.cs │ ├── UtyDepend.csproj │ └── packages.config └── utyrx ├── README.md ├── UtyRx.Tests ├── Disposables │ └── DisposableTest.cs ├── InternalUtil │ ├── MicroCoroutineTest.cs │ └── QueueWorkerTest.cs ├── Observable │ ├── Observable.ConcatTest.cs │ ├── Observable.ConcurrencyTest.cs │ ├── Observable.ErrorHandlingTest.cs │ ├── Observable.Events.cs │ ├── Observable.GeneratorTest.cs │ ├── Observable.PagingTest.cs │ ├── Observable.TimeTest.cs │ └── ObservableTest.cs ├── Operators │ ├── AggregateTest.cs │ ├── ContinueWithTest.cs │ ├── ConversionTest.cs │ ├── DoTest.cs │ ├── DurabilityTest.cs │ ├── RangeTest.cs │ ├── SelectMany.cs │ ├── TakeTest.cs │ ├── ToTest.cs │ └── WhenAllTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Schedulers │ └── SchedulerTest.cs ├── Subjects │ └── SubjectTest.cs ├── Utils │ ├── ChainingAssertion.cs │ └── TestUtil.cs ├── UtyRx.Tests.csproj └── packages.config ├── UtyRx.sln └── UtyRx ├── Asynchronous └── WebRequestExtensions.cs ├── Disposables ├── BooleanDisposable.cs ├── CompositeDisposable.cs ├── DictionaryDisposable.cs ├── Disposable.cs ├── DisposableExtensions.cs ├── ICancelable.cs ├── MultipleAssignmentDisposable.cs ├── RefCountDisposable.cs ├── ScheduledDisposable.cs ├── SerialDisposable.cs ├── SingleAssignmentDisposable.cs └── StableCompositeDisposable.cs ├── InternalUtil ├── AscynLock.cs ├── ImmutableList.cs ├── ListObserver.cs ├── MicroCoroutine.cs ├── PriorityQueue.cs ├── ReflectionAccessor.cs ├── ScheduledItem.cs └── ThreadSafeQueueWorker.cs ├── Notifiers ├── BooleanNotifier.cs ├── CountNotifier.cs ├── MessageBroker.cs └── ScheduledNotifier.cs ├── Observable ├── Observable.Aggregate.cs ├── Observable.Binding.cs ├── Observable.Blocking.cs ├── Observable.Concatenate.cs ├── Observable.Concurrency.cs ├── Observable.Conversions.cs ├── Observable.Creation.cs ├── Observable.ErrorHandling.cs ├── Observable.Events.cs ├── Observable.FromAsync.cs ├── Observable.Joins.cs ├── Observable.Paging.cs ├── Observable.Time.cs └── Observable.cs ├── Operators ├── Aggregate.cs ├── Amb.cs ├── AsObservable.cs ├── AsSingleUnitObservable.cs ├── AsUnitObservable.cs ├── Buffer.cs ├── Cast.cs ├── Catch.cs ├── CombineLatest.cs ├── Concat.cs ├── ContinueWith.cs ├── Create.cs ├── DefaultIfEmpty.cs ├── Defer.cs ├── Delay.cs ├── DelaySubscription.cs ├── Dematerialize.cs ├── Distinct.cs ├── DistinctUntilChanged.cs ├── Do.cs ├── Empty.cs ├── Finally.cs ├── First.cs ├── ForEachAsync.cs ├── FromEvent.cs ├── GroupBy.cs ├── IgnoreElements.cs ├── Last.cs ├── Materialize.cs ├── Merge.cs ├── Never.cs ├── ObserveOn.cs ├── OfType.cs ├── OperatorObservableBase.cs ├── OperatorObserverBase.cs ├── PairWise.cs ├── Range.cs ├── RefCount.cs ├── Repeat.cs ├── RepeatSafe.cs ├── Return.cs ├── Sample.cs ├── Scan.cs ├── Select.cs ├── SelectMany.cs ├── Single.cs ├── Skip.cs ├── SkipUntil.cs ├── SkipWhile.cs ├── Start.cs ├── StartWith.cs ├── SubscribeOn.cs ├── Switch.cs ├── Synchronize.cs ├── SynchronizedObserver.cs ├── Take.cs ├── TakeLast.cs ├── TakeUntil.cs ├── TakeWhile.cs ├── Throttle.cs ├── ThrottleFirst.cs ├── Throw.cs ├── TimeInterval.cs ├── Timeout.cs ├── Timer.cs ├── Timestamp.cs ├── ToArray.cs ├── ToList.cs ├── ToObservable.cs ├── Wait.cs ├── WhenAll.cs ├── Where.cs ├── WithLatestFrom.cs ├── Zip.cs └── ZipLatest.cs ├── Properties └── AssemblyInfo.cs ├── Schedulers ├── IScheduler.cs ├── Scheduler.CurrentThread.cs ├── Scheduler.Immediate.cs ├── Scheduler.Main.cs ├── Scheduler.ThreadPool.cs └── Scheduler.cs ├── Subjects ├── AsyncSubject.cs ├── BehaviorSubject.cs ├── ConnectableObservable.cs ├── ISubject.cs ├── ReplaySubject.cs ├── Subject.cs └── SubjectExtensions.cs ├── System ├── CancellationToken.cs ├── EventPattern.cs ├── IObservable.cs ├── IObserver.cs ├── IOptimizedObservable.cs ├── IProgress.cs ├── Notification.cs ├── Observer.cs ├── Pair.cs ├── TimeInterval.cs ├── Timestamped.cs ├── Tuple.cs └── Unit.cs └── UtyRx.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/README.md -------------------------------------------------------------------------------- /straight_skeleton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/README.md -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.Tests/SkeletonExtendedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.Tests/SkeletonExtendedTest.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.Tests/SkeletonLevelEventsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.Tests/SkeletonLevelEventsTest.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.Tests/SkeletonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.Tests/SkeletonTest.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.Tests/SkeletonTestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.Tests/SkeletonTestUtil.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.Tests/StraightSkeletonNet.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.Tests/StraightSkeletonNet.Tests.csproj -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.Tests/packages.config -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet.sln -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Circular/CircularList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Circular/CircularList.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Circular/CircularNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Circular/CircularNode.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Circular/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Circular/Edge.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Circular/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Circular/Vertex.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/EdgeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/EdgeResult.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/Chains/ChainType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/Chains/ChainType.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/Chains/EdgeChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/Chains/EdgeChain.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/Chains/IChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/Chains/IChain.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/Chains/SingleEdgeChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/Chains/SingleEdgeChain.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/Chains/SplitChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/Chains/SplitChain.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/EdgeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/EdgeEvent.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/MultiEdgeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/MultiEdgeEvent.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/MultiSplitEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/MultiSplitEvent.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/PickEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/PickEvent.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/SkeletonEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/SkeletonEvent.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/SplitEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/SplitEvent.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Events/VertexSplitEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Events/VertexSplitEvent.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/LavUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/LavUtil.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Path/FaceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Path/FaceNode.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Path/FaceQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Path/FaceQueue.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Path/FaceQueueUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Path/FaceQueueUtil.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Path/PathQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Path/PathQueue.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Path/PathQueueNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Path/PathQueueNode.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Primitives/LineLinear2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Primitives/LineLinear2d.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Primitives/LineParametric2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Primitives/LineParametric2d.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Primitives/PrimitiveUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Primitives/PrimitiveUtils.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Primitives/PriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Primitives/PriorityQueue.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Primitives/Vector2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Primitives/Vector2d.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/Skeleton.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/SkeletonBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/SkeletonBuilder.cs -------------------------------------------------------------------------------- /straight_skeleton/StraightSkeletonNet/StraightSkeletonNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/straight_skeleton/StraightSkeletonNet/StraightSkeletonNet.csproj -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/ContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/ContainerTests.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/InterceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/InterceptionTests.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/Stubs/ClassA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/Stubs/ClassA.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/Stubs/CollectionDependencyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/Stubs/CollectionDependencyClass.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/Stubs/ConfigurableClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/Stubs/ConfigurableClass.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/Stubs/DummyConfigSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/Stubs/DummyConfigSection.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/Stubs/PropertyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/Stubs/PropertyClass.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/UtyDepend.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/UtyDepend.Tests.csproj -------------------------------------------------------------------------------- /utydepend/UtyDepend.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.Tests/packages.config -------------------------------------------------------------------------------- /utydepend/UtyDepend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend.sln -------------------------------------------------------------------------------- /utydepend/UtyDepend/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Component.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/ComponentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/ComponentExtensions.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Config/IConfigSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Config/IConfigSection.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Config/IConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Config/IConfigurable.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Container.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/DependencyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/DependencyAttribute.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/DependencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/DependencyException.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/IContainer.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/Behaviors/ExecuteBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/Behaviors/ExecuteBehavior.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/Behaviors/IBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/Behaviors/IBehavior.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/IInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/IInterceptor.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/IMethodReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/IMethodReturn.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/IProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/IProxy.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/InterceptionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/InterceptionContext.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/InterfaceInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/InterfaceInterceptor.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/MethodInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/MethodInvocation.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/MethodReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/MethodReturn.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Interception/ProxyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Interception/ProxyBase.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Lifetime/ContainerLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Lifetime/ContainerLifetimeManager.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Lifetime/ExternalLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Lifetime/ExternalLifetimeManager.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Lifetime/ILifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Lifetime/ILifetimeManager.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Lifetime/SingletonLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Lifetime/SingletonLifetimeManager.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Lifetime/TransientLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Lifetime/TransientLifetimeManager.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Utils/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Utils/Guard.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Utils/ProxyGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Utils/ProxyGen.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/Utils/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/Utils/TypeHelper.cs -------------------------------------------------------------------------------- /utydepend/UtyDepend/UtyDepend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/UtyDepend.csproj -------------------------------------------------------------------------------- /utydepend/UtyDepend/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utydepend/UtyDepend/packages.config -------------------------------------------------------------------------------- /utyrx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/README.md -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Disposables/DisposableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Disposables/DisposableTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/InternalUtil/MicroCoroutineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/InternalUtil/MicroCoroutineTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/InternalUtil/QueueWorkerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/InternalUtil/QueueWorkerTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/Observable.ConcatTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/Observable.ConcatTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/Observable.ConcurrencyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/Observable.ConcurrencyTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/Observable.ErrorHandlingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/Observable.ErrorHandlingTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/Observable.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/Observable.Events.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/Observable.GeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/Observable.GeneratorTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/Observable.PagingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/Observable.PagingTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/Observable.TimeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/Observable.TimeTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Observable/ObservableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Observable/ObservableTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/AggregateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/AggregateTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/ContinueWithTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/ContinueWithTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/ConversionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/ConversionTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/DoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/DoTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/DurabilityTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/DurabilityTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/RangeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/RangeTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/SelectMany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/SelectMany.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/TakeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/TakeTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/ToTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/ToTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Operators/WhenAllTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Operators/WhenAllTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Schedulers/SchedulerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Schedulers/SchedulerTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Subjects/SubjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Subjects/SubjectTest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Utils/ChainingAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Utils/ChainingAssertion.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/Utils/TestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/Utils/TestUtil.cs -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/UtyRx.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/UtyRx.Tests.csproj -------------------------------------------------------------------------------- /utyrx/UtyRx.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.Tests/packages.config -------------------------------------------------------------------------------- /utyrx/UtyRx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx.sln -------------------------------------------------------------------------------- /utyrx/UtyRx/Asynchronous/WebRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Asynchronous/WebRequestExtensions.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/BooleanDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/BooleanDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/CompositeDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/CompositeDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/DictionaryDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/DictionaryDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/Disposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/DisposableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/DisposableExtensions.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/ICancelable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/ICancelable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/MultipleAssignmentDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/MultipleAssignmentDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/RefCountDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/RefCountDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/ScheduledDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/ScheduledDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/SerialDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/SerialDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/SingleAssignmentDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/SingleAssignmentDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Disposables/StableCompositeDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Disposables/StableCompositeDisposable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/AscynLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/AscynLock.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/ImmutableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/ImmutableList.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/ListObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/ListObserver.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/MicroCoroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/MicroCoroutine.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/PriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/PriorityQueue.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/ReflectionAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/ReflectionAccessor.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/ScheduledItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/ScheduledItem.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/InternalUtil/ThreadSafeQueueWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/InternalUtil/ThreadSafeQueueWorker.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Notifiers/BooleanNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Notifiers/BooleanNotifier.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Notifiers/CountNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Notifiers/CountNotifier.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Notifiers/MessageBroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Notifiers/MessageBroker.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Notifiers/ScheduledNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Notifiers/ScheduledNotifier.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Aggregate.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Binding.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Blocking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Blocking.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Concatenate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Concatenate.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Concurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Concurrency.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Conversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Conversions.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Creation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Creation.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.ErrorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.ErrorHandling.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Events.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.FromAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.FromAsync.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Joins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Joins.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Paging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Paging.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.Time.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Observable/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Observable/Observable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Aggregate.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Amb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Amb.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/AsObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/AsObservable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/AsSingleUnitObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/AsSingleUnitObservable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/AsUnitObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/AsUnitObservable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Buffer.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Cast.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Catch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Catch.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/CombineLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/CombineLatest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Concat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Concat.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ContinueWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ContinueWith.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Create.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/DefaultIfEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/DefaultIfEmpty.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Defer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Defer.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Delay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Delay.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/DelaySubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/DelaySubscription.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Dematerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Dematerialize.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Distinct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Distinct.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/DistinctUntilChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/DistinctUntilChanged.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Do.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Do.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Empty.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Finally.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Finally.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/First.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/First.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ForEachAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ForEachAsync.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/FromEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/FromEvent.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/GroupBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/GroupBy.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/IgnoreElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/IgnoreElements.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Last.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Last.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Materialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Materialize.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Merge.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Never.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Never.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ObserveOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ObserveOn.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/OfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/OfType.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/OperatorObservableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/OperatorObservableBase.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/OperatorObserverBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/OperatorObserverBase.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/PairWise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/PairWise.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Range.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/RefCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/RefCount.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Repeat.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/RepeatSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/RepeatSafe.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Return.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Sample.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Scan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Scan.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Select.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/SelectMany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/SelectMany.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Single.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Skip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Skip.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/SkipUntil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/SkipUntil.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/SkipWhile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/SkipWhile.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Start.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Start.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/StartWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/StartWith.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/SubscribeOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/SubscribeOn.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Switch.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Synchronize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Synchronize.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/SynchronizedObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/SynchronizedObserver.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Take.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Take.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/TakeLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/TakeLast.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/TakeUntil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/TakeUntil.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/TakeWhile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/TakeWhile.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Throttle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Throttle.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ThrottleFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ThrottleFirst.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Throw.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/TimeInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/TimeInterval.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Timeout.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Timer.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Timestamp.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ToArray.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ToList.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ToObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ToObservable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Wait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Wait.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/WhenAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/WhenAll.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Where.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Where.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/WithLatestFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/WithLatestFrom.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/Zip.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Operators/ZipLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Operators/ZipLatest.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Schedulers/IScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Schedulers/IScheduler.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Schedulers/Scheduler.CurrentThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Schedulers/Scheduler.CurrentThread.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Schedulers/Scheduler.Immediate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Schedulers/Scheduler.Immediate.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Schedulers/Scheduler.Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Schedulers/Scheduler.Main.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Schedulers/Scheduler.ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Schedulers/Scheduler.ThreadPool.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Schedulers/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Schedulers/Scheduler.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Subjects/AsyncSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Subjects/AsyncSubject.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Subjects/BehaviorSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Subjects/BehaviorSubject.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Subjects/ConnectableObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Subjects/ConnectableObservable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Subjects/ISubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Subjects/ISubject.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Subjects/ReplaySubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Subjects/ReplaySubject.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Subjects/Subject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Subjects/Subject.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/Subjects/SubjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/Subjects/SubjectExtensions.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/CancellationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/CancellationToken.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/EventPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/EventPattern.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/IObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/IObservable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/IObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/IObserver.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/IOptimizedObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/IOptimizedObservable.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/IProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/IProgress.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/Notification.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/Observer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/Observer.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/Pair.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/TimeInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/TimeInterval.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/Timestamped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/Timestamped.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/Tuple.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/System/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/System/Unit.cs -------------------------------------------------------------------------------- /utyrx/UtyRx/UtyRx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reinterpretcat/csharp-libs/HEAD/utyrx/UtyRx/UtyRx.csproj --------------------------------------------------------------------------------