├── .github └── workflows │ └── docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.nims ├── examples ├── basic.nim ├── mummy_server.nim ├── pipeline.nim ├── pool.nim ├── pool_borrow_callback.nim ├── pool_connect_callback.nim └── pubsub.nim ├── ready.nimble ├── src ├── ready.nim └── ready │ ├── connections.nim │ └── pools.nim └── tests ├── bench.nim ├── config.nims └── test.nim /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/README.md -------------------------------------------------------------------------------- /config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/config.nims -------------------------------------------------------------------------------- /examples/basic.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/examples/basic.nim -------------------------------------------------------------------------------- /examples/mummy_server.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/examples/mummy_server.nim -------------------------------------------------------------------------------- /examples/pipeline.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/examples/pipeline.nim -------------------------------------------------------------------------------- /examples/pool.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/examples/pool.nim -------------------------------------------------------------------------------- /examples/pool_borrow_callback.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/examples/pool_borrow_callback.nim -------------------------------------------------------------------------------- /examples/pool_connect_callback.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/examples/pool_connect_callback.nim -------------------------------------------------------------------------------- /examples/pubsub.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/examples/pubsub.nim -------------------------------------------------------------------------------- /ready.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/ready.nimble -------------------------------------------------------------------------------- /src/ready.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/src/ready.nim -------------------------------------------------------------------------------- /src/ready/connections.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/src/ready/connections.nim -------------------------------------------------------------------------------- /src/ready/pools.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/src/ready/pools.nim -------------------------------------------------------------------------------- /tests/bench.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/tests/bench.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | --path:"../src" 2 | -------------------------------------------------------------------------------- /tests/test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guzba/ready/HEAD/tests/test.nim --------------------------------------------------------------------------------