sockscape/server/Socks/PoolManager.cs

37 lines
1,004 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Kneesocks;
using System.Net.Sockets;
namespace CircleScape {
static class PoolManager {
private static Pool<PendingConnection> PendingConnectionsPool;
private static Pool<ActiveConnection> ActiveConnectionsPool;
2017-05-11 21:03:28 +00:00
public static Pool<PendingConnection> Pending {
2017-05-04 12:21:27 +00:00
get {
return PendingConnectionsPool;
}
}
2017-05-11 21:03:28 +00:00
public static Pool<ActiveConnection> Active {
get {
return ActiveConnectionsPool;
}
}
static PoolManager() {
PendingConnectionsPool = new Pool<PendingConnection> {
InitialCount = 1,
InitialSize = 10,
SizeGrowth = 10,
MaxSize = 50,
MaxCount = 5
};
ActiveConnectionsPool = new Pool<ActiveConnection>();
}
}
}