using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WebSockets.Server { public interface IService : IDisposable { /// /// Sends data back to the client. This is built using the IConnectionFactory /// void Respond(); } }