using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WebSockets.Server { /// /// Implement this to decide what connection to use based on the http header /// public interface IServiceFactory { IService CreateInstance(ConnectionDetails connectionDetails); } }