123456789101112131415161718192021222324252627282930313233343536373839 |
- using Edge.Core.Parser;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Wayne.FDCPOSLibrary;
- namespace Edge.Core.Processor
- {
- public interface IFdcCommunicableController
- {
-
-
-
-
-
- Func<string, bool> BroadcastMessageViaFdc { get; set; }
-
-
-
-
-
-
-
- Func<string, string, string, bool> SendMessageViaFdc { get; set; }
-
-
-
-
-
-
-
-
- Func<string, Tuple<string, OverallResult>> OnMessageReceivedViaFdc { get; set; }
- }
- }
|