-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.Reactive.Windows.Threading.xml
More file actions
113 lines (113 loc) · 7.31 KB
/
System.Reactive.Windows.Threading.xml
File metadata and controls
113 lines (113 loc) · 7.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0"?>
<doc>
<assembly>
<name>System.Reactive.Windows.Threading</name>
</assembly>
<members>
<member name="T:System.Reactive.Linq.DispatcherObservable">
<summary>
Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers.
</summary>
</member>
<member name="M:System.Reactive.Linq.DispatcherObservable.ObserveOn``1(System.IObservable{``0},System.Windows.Threading.Dispatcher)">
<summary>
Asynchronously notify observers using the dispatcher.
</summary>
<param name="source">Source sequence.</param>
<param name="dispatcher">Dispatcher whose associated message loop is used to to notify observers on.</param>
<returns>The source sequence whose observations happen on the message loop associated with the specified dispatcher.</returns>
</member>
<member name="M:System.Reactive.Linq.DispatcherObservable.SubscribeOn``1(System.IObservable{``0},System.Windows.Threading.Dispatcher)">
<summary>
Asynchronously subscribes and unsubscribes observers using the dispatcher.
</summary>
<param name="source">Source sequence.</param>
<param name="dispatcher">Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on.</param>
<returns>The source sequence whose subscriptions and unsubscriptions happen on the message loop associated with the specified dispatcher.</returns>
</member>
<member name="M:System.Reactive.Linq.DispatcherObservable.ObserveOn``1(System.IObservable{``0},System.Reactive.Concurrency.DispatcherScheduler)">
<summary>
Asynchronously notify observers on the specified dispatcher scheduler.
</summary>
<param name="source">Source sequence.</param>
<param name="scheduler">Dispatcher scheduler to notify observers on.</param>
<returns>The source sequence whose observations happen on the specified dispatcher scheduler.</returns>
</member>
<member name="M:System.Reactive.Linq.DispatcherObservable.ObserveOnDispatcher``1(System.IObservable{``0})">
<summary>
Asynchronously notify observers using the dispatcher associated with the current thread.
</summary>
<param name="source">Source sequence.</param>
<returns>The source sequence whose observations happen on the current thread's dispatcher.</returns>
</member>
<member name="M:System.Reactive.Linq.DispatcherObservable.SubscribeOnDispatcher``1(System.IObservable{``0})">
<summary>
Asynchronously subscribes and unsubscribes observers on the dispatcher associated with the current thread.
</summary>
<param name="source">Source sequence.</param>
<returns>The source sequence whose subscriptions and unsubscriptions happen on the current thread's dispatcher.</returns>
</member>
<member name="M:System.Reactive.Linq.DispatcherObservable.SubscribeOn``1(System.IObservable{``0},System.Reactive.Concurrency.DispatcherScheduler)">
<summary>
Asynchronously subscribes and unsubscribes observers on the specified dispatcher scheduler.
</summary>
<param name="source">Source sequence.</param>
<param name="scheduler">Dispatcher scheduler to perform subscription and unsubscription actions on.</param>
<returns>The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher scheduler.</returns>
</member>
<member name="T:System.Reactive.Concurrency.DispatcherScheduler">
<summary>
Represents an object that schedules units of work on a Dispatcher.
</summary>
<seealso cref="M:DispatcherObservable.ObserveOnDispatcher">This scheduler type is typically used indirectly through the ObserveOnDispatcher method that uses the current Dispatcher.</seealso>
<seealso cref="M:DispatcherObservable.SubscribeOnDispatcher">This scheduler type is typically used indirectly through the SubscribeOnDispatcher method that uses the current Dispatcher.</seealso>
</member>
<member name="M:System.Reactive.Concurrency.DispatcherScheduler.#ctor(System.Windows.Threading.Dispatcher)">
<summary>
Constructs a DispatcherScheduler that schedules units of work on the given dispatcher.
</summary>
<param name="dispatcher">Dispatcher to schedule work on.</param>
</member>
<member name="M:System.Reactive.Concurrency.DispatcherScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
<summary>
Schedules an action to be executed on the dispatcher.
</summary>
<param name="state">State passed to the action to be executed.</param>
<param name="action">Action to be executed.</param>
<returns>The disposable object used to cancel the scheduled action (best effort).</returns>
</member>
<member name="M:System.Reactive.Concurrency.DispatcherScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
<summary>
Schedules an action to be executed after dueTime on the dispatcher, using a DispatcherTimer object.
</summary>
<param name="state">State passed to the action to be executed.</param>
<param name="action">Action to be executed.</param>
<param name="dueTime">Relative time after which to execute the action.</param>
<returns>The disposable object used to cancel the scheduled action (best effort).</returns>
</member>
<member name="M:System.Reactive.Concurrency.DispatcherScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})">
<summary>
Schedules an action to be executed at dueTime on the dispatcher, using a DispatcherTimer object.
</summary>
<param name="state">State passed to the action to be executed.</param>
<param name="action">Action to be executed.</param>
<param name="dueTime">Absolute time at which to execute the action.</param>
<returns>The disposable object used to cancel the scheduled action (best effort).</returns>
</member>
<member name="P:System.Reactive.Concurrency.DispatcherScheduler.Instance">
<summary>
Gets the scheduler that schedules work on the current Dispatcher.
</summary>
</member>
<member name="P:System.Reactive.Concurrency.DispatcherScheduler.Now">
<summary>
Gets the scheduler's notion of current time.
</summary>
</member>
<member name="P:System.Reactive.Concurrency.DispatcherScheduler.Dispatcher">
<summary>
Gets the dispatcher associated with the DispatcherScheduler.
</summary>
</member>
</members>
</doc>