├── .gitignore ├── .idea └── vcs.xml ├── .travis.yml ├── LICENSE ├── README.md ├── channel.go ├── channel_test.go ├── longpoll.go ├── longpoll_test.go ├── timeout.go └── timeout_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | Gopkg.lock 4 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/README.md -------------------------------------------------------------------------------- /channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/channel.go -------------------------------------------------------------------------------- /channel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/channel_test.go -------------------------------------------------------------------------------- /longpoll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/longpoll.go -------------------------------------------------------------------------------- /longpoll_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/longpoll_test.go -------------------------------------------------------------------------------- /timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/timeout.go -------------------------------------------------------------------------------- /timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teris-io/longpoll/HEAD/timeout_test.go --------------------------------------------------------------------------------