Sic.Framework/MECF.Framework.Common/Aitex/Core/WCF/Interface/IEventServiceCallback.cs

13 lines
230 B
C#

using System.ServiceModel;
using Aitex.Core.RT.Event;
namespace Aitex.Core.WCF.Interface
{
[ServiceContract]
public interface IEventServiceCallback
{
[OperationContract(IsOneWay = true)]
void SendEvent(EventItem ev);
}
}