Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/NET/Source/Tests.System.Reactive/DispatcherHelpers.cs')
-rw-r--r--Rx/NET/Source/Tests.System.Reactive/DispatcherHelpers.cs68
1 files changed, 68 insertions, 0 deletions
diff --git a/Rx/NET/Source/Tests.System.Reactive/DispatcherHelpers.cs b/Rx/NET/Source/Tests.System.Reactive/DispatcherHelpers.cs
new file mode 100644
index 0000000..2eefed5
--- /dev/null
+++ b/Rx/NET/Source/Tests.System.Reactive/DispatcherHelpers.cs
@@ -0,0 +1,68 @@
+// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
+
+using System;
+using System.Threading;
+using System.Windows.Threading;
+
+namespace ReactiveTests
+{
+ static class DispatcherHelpers
+ {
+ public static DispatcherWrapper EnsureDispatcher()
+ {
+#if DESKTOPCLR
+ var dispatcher = new Thread(Dispatcher.Run);
+ dispatcher.IsBackground = true;
+ dispatcher.Start();
+
+ while (Dispatcher.FromThread(dispatcher) == null)
+ Thread.Sleep(10);
+
+ var d = Dispatcher.FromThread(dispatcher);
+
+ while (d.BeginInvoke(new Action(() => { })).Status == DispatcherOperationStatus.Aborted) ;
+
+ return new DispatcherWrapper(d);
+#else
+ return new DispatcherWrapper(System.Windows.Deployment.Current.Dispatcher);
+#endif
+ }
+ }
+
+ class DispatcherWrapper
+ {
+ private Dispatcher _dispatcher;
+
+ public DispatcherWrapper(Dispatcher dispatcher)
+ {
+ _dispatcher = dispatcher;
+ }
+
+ public Dispatcher Dispatcher { get { return _dispatcher; } }
+
+ public void InvokeShutdown()
+ {
+#if !USE_SL_DISPATCHER
+ _dispatcher.InvokeShutdown();
+#endif
+ }
+
+ public static implicit operator Dispatcher(DispatcherWrapper wrapper)
+ {
+ return wrapper._dispatcher;
+ }
+
+#if !USE_SL_DISPATCHER
+ public event DispatcherUnhandledExceptionEventHandler UnhandledException
+ {
+ add { _dispatcher.UnhandledException += value; }
+ remove { _dispatcher.UnhandledException -= value; }
+ }
+#endif
+
+ public void BeginInvoke(Action action)
+ {
+ _dispatcher.BeginInvoke(action);
+ }
+ }
+}