ReactiveTest.OnCompleted<T> Method
Factory method for a recorded OnCompleted notification at a given time.
Namespace: Microsoft.Reactive.Testing
Assembly: Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)
Syntax
'Declaration
Public Shared Function OnCompleted(Of T) ( _
ticks As Long _
) As Recorded(Of Notification(Of T))
'Usage
Dim ticks As Long
Dim returnValue As Recorded(Of Notification(Of T))
returnValue = ReactiveTest.OnCompleted(ticks)
public static Recorded<Notification<T>> OnCompleted<T>(
long ticks
)
public:
generic<typename T>
static Recorded<Notification<T>^> OnCompleted(
long long ticks
)
static member OnCompleted :
ticks:int64 -> Recorded<Notification<'T>>
JScript does not support generic types and methods.
Type Parameters
- T
Parameters
- ticks
Type: System.Int64
Recorded virtual time the OnCompleted notification occurs.
Return Value
Type: Microsoft.Reactive.Testing.Recorded<Notification<T>>
Recorded OnCompleted notification.