Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/winterland1989/roundrobin

A simple round-robin data type
https://github.com/winterland1989/roundrobin

Last synced: 29 days ago
JSON representation

A simple round-robin data type

Awesome Lists containing this project

README

        

[![Hackage](https://img.shields.io/hackage/v/roundRobin.svg?style=flat)](http://hackage.haskell.org/package/roundRobin)
[![Travis-CI](https://travis-ci.org/winterland1989/roundRobin.svg)](https://travis-ci.org/winterland1989/roundRobin)

# A simple round-robin data type

This package provide a simple data type wrap a round-robin table. so you can select resources(host, connection...) using round-robin fashion.

## Example

```haskell
import qualified Date.RoundRobin as RR
import qualified Network.HTTP.Client as HTTP

main :: IO ()
main = do
reqs <- mapM HTTP.parseUrl ["http://foo.com", "http://bar.com", "http://qux.com"]
proxyTable <- RR.newRoundRobin reqs
manager <- HTTP.newManager HTTP.defaultManagerSettings

...
-- maybe now you're inside a server service(a forked thread)
-- use select to choose a request in round-robin fashion
req <- RR.select proxyTable
res <- HTTP.httpLbs req manager
...
```