| 123456789101112131415161718192021222324 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ServiceModel;using System.IO;using Aitex.Core.RT.Event;namespace Aitex.Core.WCF.Interface{    [ServiceContract]    public interface IEventServiceCallback    {        [OperationContract(IsOneWay = true)]        void SendEvent(EventItem ev);        [OperationContract(IsOneWay = true)]        void SendLockEvent(bool IsLock);        [OperationContract(IsOneWay = true)]        void SendChangedWaferModule(IEnumerable<string> modules);    }}
 |