upm_guru_kcp/Runtime/csharp-kcp/dotNetty-kcp/thread/IScheduleThread.cs

13 lines
234 B
C#
Raw Permalink Normal View History

2023-08-30 05:50:21 +00:00
using System;
using DotNetty.Common.Utilities;
namespace dotNetty_kcp.thread
{
public interface IScheduleThread
{
void schedule(IScheduleTask scheduleTask,TimeSpan timeSpan);
void stop();
}
}