17 lines
317 B
C#
17 lines
317 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace dotNetty_kcp.thread
|
||
|
|
{
|
||
|
|
public interface IExecutorPool
|
||
|
|
{
|
||
|
|
IMessageExecutor CreateMessageExecutor();
|
||
|
|
|
||
|
|
void stop(bool stopImmediately);
|
||
|
|
|
||
|
|
IMessageExecutor GetAutoMessageExecutor();
|
||
|
|
|
||
|
|
|
||
|
|
void scheduleTask(IScheduleTask scheduleTask);
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|