You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
378 B
28 lines
378 B
/*
|
|
Sog 游戏基础库
|
|
2016 by zouwei
|
|
*/
|
|
|
|
using System;
|
|
using System.Threading;
|
|
|
|
namespace Sog
|
|
{
|
|
public enum SessionNetSelectMode
|
|
{
|
|
Unknow = 0,
|
|
|
|
//同步select
|
|
Synchronous = 1,
|
|
|
|
// 异步模式
|
|
Asynchronous = 2
|
|
}
|
|
|
|
public enum AsyncConnectedResult
|
|
{
|
|
None = 0,
|
|
Success = 1,
|
|
Failed = 2
|
|
}
|
|
}
|
|
|