-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCellDataService.cs
78 lines (67 loc) · 2.21 KB
/
CellDataService.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reactive.Concurrency;
using System.Reactive.Linq;
namespace WpfApp1
{
public class CellDataService
{
Random _random = new Random();
public int ColumnCount { get; set; }
public int RowCount { get; set; }
public IObservable<IEnumerable<CellModel>> GetData(TimeSpan interval)
{
return Observable.Create<IEnumerable<CellModel>>(observer =>
{
return TaskPoolScheduler.Default.ScheduleAsync(async (ctrl, ct) =>
{
var watch = new Stopwatch();
for (; ; )
{
if (ct.IsCancellationRequested)
{
break;
}
watch.Restart();
try
{
var data = GetDataInternal();
observer.OnNext(data);
}
catch (Exception ex)
{
observer.OnError(ex);
throw;
}
watch.Stop();
var diff = interval - watch.Elapsed;
if (diff > TimeSpan.Zero)
{
await ctrl.Sleep(diff).ConfigureAwait(false);
}
}
});
});
}
public IEnumerable<CellModel> GetDataInternal()
{
var cells = new List<CellModel>();
for (var i = 0; i < ColumnCount; i += 2)
{
foreach (var j in Enumerable.Range(0, RowCount))
{
var cell = new CellModel
{
Column = i,
Row = j,
Text = _random.Next(1, 100).ToString()
};
cells.Add(cell);
}
}
return cells;
}
}
}