Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/LongCount.cs')
-rw-r--r--Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/LongCount.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/LongCount.cs b/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/LongCount.cs
index 0108e18..63c9f24 100644
--- a/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/LongCount.cs
+++ b/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/LongCount.cs
@@ -3,7 +3,7 @@
#if !NO_PERF
using System;
-namespace System.Reactive.Linq.Observαble
+namespace System.Reactive.Linq.ObservableImpl
{
class LongCount<TSource> : Producer<long>
{
@@ -31,7 +31,7 @@ namespace System.Reactive.Linq.Observαble
}
else
{
- var sink = new π(this, observer, cancel);
+ var sink = new LongCountImpl(this, observer, cancel);
setSink(sink);
return _source.SubscribeSafe(sink);
}
@@ -77,12 +77,12 @@ namespace System.Reactive.Linq.Observαble
}
}
- class π : Sink<long>, IObserver<TSource>
+ class LongCountImpl : Sink<long>, IObserver<TSource>
{
private readonly LongCount<TSource> _parent;
private long _count;
- public π(LongCount<TSource> parent, IObserver<long> observer, IDisposable cancel)
+ public LongCountImpl(LongCount<TSource> parent, IObserver<long> observer, IDisposable cancel)
: base(observer, cancel)
{
_parent = parent;