You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
-
- /* ***********************************************
- * subject 数据总线接口,定义主动取得数据
- * author 张原川
- * date 2019/6/3 11:25:11
- * ***********************************************/
-
- namespace BPASmartClient.Bus.DataBus
- {
- public interface IGivenDataBus<TData>: IDataBus<TData>
- {
- /// <summary>
- /// 数据取出
- /// </summary>
- /// <returns></returns>
- TData Get();
-
- /// <summary>
- /// 数据取出
- /// </summary>
- /// <returns></returns>
- TData[] Get(int count);
- }
- }
|