终端一体化运控平台
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.
 
 
 

31 lines
709 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. /* ***********************************************
  7.  * subject 数据总线接口,定义主动取得数据
  8.  * author 张原川
  9.  * date   2019/6/3 11:25:11
  10.  * ***********************************************/
  11. namespace BPASmartClient.Bus.DataBus
  12. {
  13. public interface IGivenDataBus<TData>: IDataBus<TData>
  14. {
  15. /// <summary>
  16. /// 数据取出
  17. /// </summary>
  18. /// <returns></returns>
  19. TData Get();
  20. /// <summary>
  21. /// 数据取出
  22. /// </summary>
  23. /// <returns></returns>
  24. TData[] Get(int count);
  25. }
  26. }