using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SuperSocket.SocketEngine
{
///
/// the interface for server instance which works as a process
///
public interface IProcessServer
{
///
/// Gets the process id.
///
///
/// The process id. If the process id is zero, the server instance is not running
///
int ProcessId { get; }
}
}