10 lines
201 B
C#
10 lines
201 B
C#
namespace Mongo2Go.Helper
|
|
{
|
|
public interface IPortPool
|
|
{
|
|
/// <summary>
|
|
/// Returns and reserves a new port
|
|
/// </summary>
|
|
int GetNextOpenPort();
|
|
}
|
|
} |