IEventServiceCallback.cs 360 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ServiceModel;
  6. using System.IO;
  7. using Aitex.Core.RT.Event;
  8. namespace Aitex.Core.WCF.Interface
  9. {
  10. [ServiceContract]
  11. public interface IEventServiceCallback
  12. {
  13. [OperationContract(IsOneWay = true)]
  14. void SendEvent(EventItem ev);
  15. }
  16. }