mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-04 04:18:22 +00:00
33 lines
664 B
C#
33 lines
664 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Collections;
|
|
using System.Net;
|
|
using Esiur.Data;
|
|
using Esiur.Engine;
|
|
using Esiur.Resource;
|
|
|
|
namespace Esiur.Net.UDP
|
|
{
|
|
public abstract class UDPFilter : IResource
|
|
{
|
|
public Instance Instance
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
|
|
public event DestroyedEvent OnDestroy;
|
|
|
|
public abstract AsyncReply<bool> Trigger(ResourceTrigger trigger);
|
|
|
|
public abstract bool Execute(byte[] data, IPEndPoint sender);
|
|
|
|
public void Destroy()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |