You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Adds a time-based toggle trigger that switches between nodes created by the specified factory functions when triggered by <paramref name="triggerObservable"/>.
55
59
/// Quick consecutive triggers advance through all node factories sequentially. After a timeout period, the next trigger restarts from the beginning.
60
+
/// If the light is currently on, the first trigger will turn it off.
56
61
/// </summary>
57
62
/// <typeparam name="T">The type of values emitted by the trigger observable.</typeparam>
58
63
/// <param name="triggerObservable">The observable that triggers toggling to the next node.</param>
/// Adds a time-based toggle trigger that switches between nodes created by the specified factory functions when triggered by <paramref name="triggerObservable"/>.
66
71
/// Quick consecutive triggers advance through all node factories sequentially. After a timeout period, the next trigger restarts from the beginning.
72
+
/// If the light is currently on, the first trigger will turn it off.
67
73
/// </summary>
68
74
/// <typeparam name="T">The type of values emitted by the trigger observable.</typeparam>
69
75
/// <param name="triggerObservable">The observable that triggers toggling to the next node.</param>
/// Adds a time-based toggle trigger configured by the specified <paramref name="configure"/> action when triggered by <paramref name="triggerObservable"/>.
77
83
/// Quick consecutive triggers advance through all configured states sequentially. After a timeout period, the next trigger restarts from the beginning.
84
+
/// If the light is currently on, the first trigger will turn it off.
78
85
/// </summary>
79
86
/// <typeparam name="T">The type of values emitted by the trigger observable.</typeparam>
80
87
/// <param name="triggerObservable">The observable that triggers toggling to the next state.</param>
0 commit comments