forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNullStorageEngine.cs
62 lines (52 loc) · 1.66 KB
/
NullStorageEngine.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using NLog;
namespace ReactiveUI.Serialization
{
/// <summary>
/// NullStorageEngine is a test implementation of IStorageEngine that
/// always returns zero results
/// </summary>
public class NullStorageEngine : IStorageEngine, IEnableLogger
{
public T Load<T>(Guid ContentHash) where T : ISerializableItem
{
this.Log().Debug("Loading {0}, returning null", ContentHash);
return default(T);
}
public object Load(Guid ContentHash)
{
this.Log().Debug("Loading {0}, returning null", ContentHash);
return null;
}
public void Save<T>(T Obj) where T : ISerializableItem
{
this.Log().Debug("Saving {0}", Obj.ContentHash);
}
public void FlushChanges()
{
this.Log().Debug("Flush");
}
public Guid[] GetAllObjectHashes()
{
return new Guid[0];
}
public int GetObjectCount()
{
return 0;
}
public ISyncPointInformation CreateSyncPoint<T>(T obj, string qualifier = null, DateTimeOffset? createdOn = null)
where T : ISerializableItem
{
this.Log().Debug("Creating sync point for {0} ({1})", obj.ContentHash, qualifier);
return new SyncPointInformation(Guid.Empty, Guid.Empty, typeof (T), qualifier ?? String.Empty, createdOn ?? DateTimeOffset.Now);
}
public Guid[] GetOrderedRevisionList(Type type, string qualifier = null)
{
return null;
}
public void Dispose()
{
}
}
}
// vim: tw=120 ts=4 sw=4 et :