Mercurial > silverbladetech
view Messaging/Server/Listeners/IListener.cs @ 87:8bb84cc9ba3f
Clear out rubbish
author | stevenhollidge <stevenhollidge@hotmail.com> |
---|---|
date | Thu, 26 Apr 2012 13:23:35 +0100 |
parents | 7d9de5746f18 |
children |
line wrap: on
line source
namespace Server.Listeners { public interface IListener { bool IsListening { get; set; } void Start(); void Stop(); } }