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

13 lines
230 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System.ServiceModel;
using Aitex.Core.RT.Event;
namespace Aitex.Core.WCF.Interface
{
[ServiceContract]
public interface IEventServiceCallback
{
[OperationContract(IsOneWay = true)]
void SendEvent(EventItem ev);
}
}