Mercurial > silverbladetech
comparison MetroWpf/Libs/Rx-WPF.1.0.11226/lib/Net4/System.Reactive.Windows.Threading.XML @ 15:060f02cd4591
Initial commit, pre airport work
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Mon, 12 Mar 2012 23:05:21 +0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
14:741981715d94 | 15:060f02cd4591 |
---|---|
1 <?xml version="1.0"?> | |
2 <doc> | |
3 <assembly> | |
4 <name>System.Reactive.Windows.Threading</name> | |
5 </assembly> | |
6 <members> | |
7 <member name="T:System.Reactive.Linq.DispatcherObservable"> | |
8 <summary> | |
9 Provides a set of static methods for subscribing to IObservables using Dispatchers. | |
10 </summary> | |
11 </member> | |
12 <member name="M:System.Reactive.Linq.DispatcherObservable.ObserveOn``1(System.IObservable{``0},System.Windows.Threading.Dispatcher)"> | |
13 <summary> | |
14 Asynchronously notify observers using the dispatcher. | |
15 </summary> | |
16 <param name="source">Source sequence.</param> | |
17 <param name="dispatcher">Dispatcher whose associated message loop is used to to notify observers on.</param> | |
18 <returns>The source sequence whose observations happen on the message loop associated with the specified dispatcher.</returns> | |
19 </member> | |
20 <member name="M:System.Reactive.Linq.DispatcherObservable.SubscribeOn``1(System.IObservable{``0},System.Windows.Threading.Dispatcher)"> | |
21 <summary> | |
22 Asynchronously subscribes and unsubscribes observers using the dispatcher. | |
23 </summary> | |
24 <param name="source">Source sequence.</param> | |
25 <param name="dispatcher">Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on.</param> | |
26 <returns>The source sequence whose subscriptions and unsubscriptions happen on the message loop associated with the specified dispatcher.</returns> | |
27 </member> | |
28 <member name="M:System.Reactive.Linq.DispatcherObservable.ObserveOn``1(System.IObservable{``0},System.Reactive.Concurrency.DispatcherScheduler)"> | |
29 <summary> | |
30 Asynchronously notify observers on the specified dispatcher scheduler. | |
31 </summary> | |
32 <param name="source">Source sequence.</param> | |
33 <param name="scheduler">Dispatcher scheduler to notify observers on.</param> | |
34 <returns>The source sequence whose observations happen on the specified dispatcher scheduler.</returns> | |
35 </member> | |
36 <member name="M:System.Reactive.Linq.DispatcherObservable.ObserveOnDispatcher``1(System.IObservable{``0})"> | |
37 <summary> | |
38 Asynchronously notify observers using the dispatcher associated with the current thread. | |
39 </summary> | |
40 <param name="source">Source sequence.</param> | |
41 <returns>The source sequence whose observations happen on the current thread's dispatcher.</returns> | |
42 </member> | |
43 <member name="M:System.Reactive.Linq.DispatcherObservable.SubscribeOnDispatcher``1(System.IObservable{``0})"> | |
44 <summary> | |
45 Asynchronously subscribes and unsubscribes observers on the dispatcher associated with the current thread. | |
46 </summary> | |
47 <param name="source">Source sequence.</param> | |
48 <returns>The source sequence whose subscriptions and unsubscriptions happen on the current thread's dispatcher.</returns> | |
49 </member> | |
50 <member name="M:System.Reactive.Linq.DispatcherObservable.SubscribeOn``1(System.IObservable{``0},System.Reactive.Concurrency.DispatcherScheduler)"> | |
51 <summary> | |
52 Asynchronously subscribes and unsubscribes observers on the specified dispatcher scheduler. | |
53 </summary> | |
54 <param name="source">Source sequence.</param> | |
55 <param name="scheduler">Dispatcher scheduler to perform subscription and unsubscription actions on.</param> | |
56 <returns>The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher scheduler.</returns> | |
57 </member> | |
58 <member name="T:System.Reactive.Concurrency.DispatcherScheduler"> | |
59 <summary> | |
60 Represents an object that schedules units of work on a Dispatcher. | |
61 </summary> | |
62 <seealso cref="M:Observable.ObserveOnDispatcher">This scheduler type is typically used indirectly through the ObserveOnDispatcher method that uses the current Dispatcher.</seealso> | |
63 <seealso cref="M:Observable.SubscribeOnDispatcher">This scheduler type is typically used indirectly through the SubscribeOnDispatcher method that uses the current Dispatcher.</seealso> | |
64 </member> | |
65 <member name="M:System.Reactive.Concurrency.DispatcherScheduler.#ctor(System.Windows.Threading.Dispatcher)"> | |
66 <summary> | |
67 Constructs an DispatcherScheduler that schedules units of work on dispatcher. | |
68 </summary> | |
69 <param name="dispatcher">Dispatcher to schedule work on.</param> | |
70 </member> | |
71 <member name="M:System.Reactive.Concurrency.DispatcherScheduler.Schedule``1(``0,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})"> | |
72 <summary> | |
73 Schedules an action to be executed on the dispatcher. | |
74 </summary> | |
75 <param name="state">State passed to the action to be executed.</param> | |
76 <param name="action">Action to be executed.</param> | |
77 <returns>The disposable object used to cancel the scheduled action (best effort).</returns> | |
78 </member> | |
79 <member name="M:System.Reactive.Concurrency.DispatcherScheduler.Schedule``1(``0,System.TimeSpan,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})"> | |
80 <summary> | |
81 Schedules an action to be executed after dueTime on the dispatcher, using a DispatcherTimer object. | |
82 </summary> | |
83 <param name="state">State passed to the action to be executed.</param> | |
84 <param name="action">Action to be executed.</param> | |
85 <param name="dueTime">Relative time after which to execute the action.</param> | |
86 <returns>The disposable object used to cancel the scheduled action (best effort).</returns> | |
87 </member> | |
88 <member name="M:System.Reactive.Concurrency.DispatcherScheduler.Schedule``1(``0,System.DateTimeOffset,System.Func{System.Reactive.Concurrency.IScheduler,``0,System.IDisposable})"> | |
89 <summary> | |
90 Schedules an action to be executed at dueTime on the dispatcher, using a DispatcherTimer object. | |
91 </summary> | |
92 <param name="state">State passed to the action to be executed.</param> | |
93 <param name="action">Action to be executed.</param> | |
94 <param name="dueTime">Absolute time at which to execute the action.</param> | |
95 <returns>The disposable object used to cancel the scheduled action (best effort).</returns> | |
96 </member> | |
97 <member name="P:System.Reactive.Concurrency.DispatcherScheduler.Instance"> | |
98 <summary> | |
99 Gets the scheduler that schedules work on the current Dispatcher. | |
100 </summary> | |
101 </member> | |
102 <member name="P:System.Reactive.Concurrency.DispatcherScheduler.Now"> | |
103 <summary> | |
104 Gets the scheduler's notion of current time. | |
105 </summary> | |
106 </member> | |
107 <member name="P:System.Reactive.Concurrency.DispatcherScheduler.Dispatcher"> | |
108 <summary> | |
109 Gets the dispatcher associated with the DispatcherScheduler. | |
110 </summary> | |
111 </member> | |
112 </members> | |
113 </doc> |