TestScheduler.CreateHotObservable<T> Method
Creates a hot observable.
Namespace: Microsoft.Reactive.Testing
Assembly: Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)
Syntax
'Declaration
Public Function CreateHotObservable(Of T) ( _
ParamArray messages As Recorded(Of Notification(Of T))() _
) As ITestableObservable(Of T)
'Usage
Dim instance As TestScheduler
Dim messages As Recorded(Of Notification(Of T))()
Dim returnValue As ITestableObservable(Of T)
returnValue = instance.CreateHotObservable(messages)
public ITestableObservable<T> CreateHotObservable<T>(
params Recorded<Notification<T>>[] messages
)
public:
generic<typename T>
ITestableObservable<T>^ CreateHotObservable(
... array<Recorded<Notification<T>^>>^ messages
)
member CreateHotObservable :
messages:Recorded<Notification<'T>>[] -> ITestableObservable<'T>
JScript does not support generic types and methods.
Type Parameters
- T
Parameters
- messages
Type: Microsoft.Reactive.Testing.Recorded<Notification<T>>[]
Notifications to surface through the created sequence.
Return Value
Type: Microsoft.Reactive.Testing.ITestableObservable<T>
Hot observable exhibiting the specified message behavior.