forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxStorage.cs
46 lines (41 loc) · 1.32 KB
/
RxStorage.cs
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
using System;
namespace ReactiveUI.Serialization
{
public static class RxStorage
{
static IExtendedStorageEngine _Engine;
[ThreadStatic] static IExtendedStorageEngine _UnitTestEngine;
public static IExtendedStorageEngine Engine {
get { return _UnitTestEngine ?? _Engine; }
set {
if (RxApp.InUnitTestRunner()) {
_UnitTestEngine = value;
_Engine = _Engine ?? value;
} else {
_Engine = value;
}
}
}
static RxStorage()
{
if (RxApp.InUnitTestRunner()) {
InitializeWithEngine(new DictionaryStorageEngine());
}
}
/// <summary>
/// InitializeWithEngine initializes ReactiveUI.Serialization with a
/// storage engine to load and save objects.
/// </summary>
/// <param name="engine">The engine to use.</param>
public static void InitializeWithEngine(IStorageEngine engine)
{
var extEngine = engine as IExtendedStorageEngine;
if (extEngine != null) {
Engine = extEngine;
} else {
Engine = new NaiveExtendedEngine(engine);
}
}
}
}
// vim: tw=120 ts=4 sw=4 et :