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

34 lines
723 B
C#
Raw Permalink Normal View History

2023-08-30 05:50:21 +00:00
using System;
namespace dotNetty_kcp.thread
{
public interface IMessageExecutor
{
/**
*
*/
void start();
/**
*
* shutdownRightNow false
*/
void stop(bool stopImmediately);
/**
*
* @return
*/
bool isFull();
/**
*
* : 线线 线
*
* @param iTask
*/
bool execute(ITask iTask);
}
}