Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Starts the test scheduler.
Namespace: Microsoft.Reactive.Testing
Assembly: Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)
Syntax
'Declaration
Public Function Start(Of T) ( _
create As Func(Of IObservable(Of T)) _
) As ITestableObserver(Of T)
'Usage
Dim instance As TestScheduler
Dim create As Func(Of IObservable(Of T))
Dim returnValue As ITestableObserver(Of T)
returnValue = instance.Start(create)
public ITestableObserver<T> Start<T>(
Func<IObservable<T>> create
)
public:
generic<typename T>
ITestableObserver<T>^ Start(
Func<IObservable<T>^>^ create
)
member Start :
create:Func<IObservable<'T>> -> ITestableObserver<'T>
JScript does not support generic types and methods.
Type Parameters
- T
Parameters
- create
Type: System.Func<IObservable<T>>
The factory method to create an observable sequence.
Return Value
Type: Microsoft.Reactive.Testing.ITestableObserver<T>
The testable observer with recordings of notifications that occurred.