1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| namespace Yw.Exchange
| {
| /// <summary>
| ///
| /// </summary>
| public interface IRunRealRecordExchangeHelper
| {
| /// <summary>
| /// 推送
| /// </summary>
| bool Push(List<Yw.Model.RunRealRecord> list);
|
| /// <summary>
| /// 接收
| /// </summary>
| bool Receive(Func<List<Yw.Model.RunRealRecord>, bool> func);
|
| /// <summary>
| /// 关闭
| /// </summary>
| void Close();
| }
| }
|
|