├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── doc ├── edoc-info ├── erlang.png ├── maestro.html ├── maestro.md ├── maestro_pool_sup.html ├── maestro_pool_sup.md ├── maestro_serv.html ├── maestro_serv.md ├── modules-frame.html ├── overview-summary.html ├── overview.edoc ├── packages-frame.html ├── stylesheet.css └── utf8 │ └── README.md ├── package.exs ├── rebar.config ├── src ├── maestro.app.src ├── maestro.erl ├── maestro_pool_sup.erl └── maestro_serv.erl └── test ├── maestro_test_worker.erl └── maestro_tests.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /doc/edoc-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/edoc-info -------------------------------------------------------------------------------- /doc/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/erlang.png -------------------------------------------------------------------------------- /doc/maestro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/maestro.html -------------------------------------------------------------------------------- /doc/maestro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/maestro.md -------------------------------------------------------------------------------- /doc/maestro_pool_sup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/maestro_pool_sup.html -------------------------------------------------------------------------------- /doc/maestro_pool_sup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/maestro_pool_sup.md -------------------------------------------------------------------------------- /doc/maestro_serv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/maestro_serv.html -------------------------------------------------------------------------------- /doc/maestro_serv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/maestro_serv.md -------------------------------------------------------------------------------- /doc/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/modules-frame.html -------------------------------------------------------------------------------- /doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/overview-summary.html -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /doc/packages-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/packages-frame.html -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/stylesheet.css -------------------------------------------------------------------------------- /doc/utf8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/doc/utf8/README.md -------------------------------------------------------------------------------- /package.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/package.exs -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/rebar.config -------------------------------------------------------------------------------- /src/maestro.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/src/maestro.app.src -------------------------------------------------------------------------------- /src/maestro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/src/maestro.erl -------------------------------------------------------------------------------- /src/maestro_pool_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/src/maestro_pool_sup.erl -------------------------------------------------------------------------------- /src/maestro_serv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/src/maestro_serv.erl -------------------------------------------------------------------------------- /test/maestro_test_worker.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/test/maestro_test_worker.erl -------------------------------------------------------------------------------- /test/maestro_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-andrade/maestro/HEAD/test/maestro_tests.erl --------------------------------------------------------------------------------