a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
510 B
C#
21 lines
510 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
|
|
namespace ReactiveTests.Dummies
|
|
{
|
|
class DummyObservable<T> : IObservable<T>
|
|
{
|
|
public static readonly DummyObservable<T> Instance = new DummyObservable<T>();
|
|
|
|
DummyObservable()
|
|
{
|
|
}
|
|
|
|
public IDisposable Subscribe(IObserver<T> observer)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|