AIexandr / Nancy.LongPoll

This is the long-polling (push, comet etc.) pattern implementation as a Nancy module.
Other
12 stars 3 forks source link

Nancy.LongPoll

What is it and what is it for at a glance

This is the long-polling (push, comet etc.) pattern implementation as a Nancy module. See more about the Long Polling: https://en.wikipedia.org/wiki/Push_technology See more about Nancy: http://nancyfx.org/

Quick start

protected override void ConfigureApplicationContainer(TinyIoc.TinyIoCContainer container)
{
  base.ConfigureApplicationContainer(container);
  container.Register<PollService>().AsSingleton();
}

For more detailed information on implementation please see the example project: https://github.com/AIexandr/Nancy.LongPoll/tree/master/Nancy.LongPoll.Example

The example screenshot: Screenshot