├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── RELEASES.md ├── doc ├── 2014-03-06-Erlang-Factory.pdf ├── 2016-09-09-EUC-Concurrency-Fount.pdf └── Epocxy_Explained.md ├── erlang.mk ├── example ├── cxy_synch_trace.erl ├── fount_worker.erl ├── hexdump_fount.erl └── list_feeder.erl ├── include ├── cxy_cache.hrl └── tracing_levels.hrl ├── rebar.config ├── src ├── batch_feeder.erl ├── cxy_cache.erl ├── cxy_cache_fsm.erl ├── cxy_cache_sup.erl ├── cxy_ctl.erl ├── cxy_fount.erl ├── cxy_fount_sup.erl ├── cxy_regulator.erl ├── cxy_synch.erl ├── epocxy.app.src └── ets_buffer.erl └── test ├── epocxy.coverspec ├── epocxy.spec └── epocxy ├── batch_feeder_SUITE.erl ├── cxy_cache_SUITE.erl ├── cxy_ctl_SUITE.erl ├── cxy_fount_SUITE.erl ├── cxy_fount_fail_behaviour.erl ├── cxy_fount_hello_behaviour.erl ├── cxy_regulator_SUITE.erl ├── epocxy_common_test.hrl ├── ets_buffer_SUITE.erl ├── fox_obj.erl ├── frog_obj.erl └── rabbit_obj.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/RELEASES.md -------------------------------------------------------------------------------- /doc/2014-03-06-Erlang-Factory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/doc/2014-03-06-Erlang-Factory.pdf -------------------------------------------------------------------------------- /doc/2016-09-09-EUC-Concurrency-Fount.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/doc/2016-09-09-EUC-Concurrency-Fount.pdf -------------------------------------------------------------------------------- /doc/Epocxy_Explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/doc/Epocxy_Explained.md -------------------------------------------------------------------------------- /erlang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/erlang.mk -------------------------------------------------------------------------------- /example/cxy_synch_trace.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/example/cxy_synch_trace.erl -------------------------------------------------------------------------------- /example/fount_worker.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/example/fount_worker.erl -------------------------------------------------------------------------------- /example/hexdump_fount.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/example/hexdump_fount.erl -------------------------------------------------------------------------------- /example/list_feeder.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/example/list_feeder.erl -------------------------------------------------------------------------------- /include/cxy_cache.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/include/cxy_cache.hrl -------------------------------------------------------------------------------- /include/tracing_levels.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/include/tracing_levels.hrl -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/rebar.config -------------------------------------------------------------------------------- /src/batch_feeder.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/batch_feeder.erl -------------------------------------------------------------------------------- /src/cxy_cache.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_cache.erl -------------------------------------------------------------------------------- /src/cxy_cache_fsm.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_cache_fsm.erl -------------------------------------------------------------------------------- /src/cxy_cache_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_cache_sup.erl -------------------------------------------------------------------------------- /src/cxy_ctl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_ctl.erl -------------------------------------------------------------------------------- /src/cxy_fount.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_fount.erl -------------------------------------------------------------------------------- /src/cxy_fount_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_fount_sup.erl -------------------------------------------------------------------------------- /src/cxy_regulator.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_regulator.erl -------------------------------------------------------------------------------- /src/cxy_synch.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/cxy_synch.erl -------------------------------------------------------------------------------- /src/epocxy.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/epocxy.app.src -------------------------------------------------------------------------------- /src/ets_buffer.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/src/ets_buffer.erl -------------------------------------------------------------------------------- /test/epocxy.coverspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy.coverspec -------------------------------------------------------------------------------- /test/epocxy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy.spec -------------------------------------------------------------------------------- /test/epocxy/batch_feeder_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/batch_feeder_SUITE.erl -------------------------------------------------------------------------------- /test/epocxy/cxy_cache_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/cxy_cache_SUITE.erl -------------------------------------------------------------------------------- /test/epocxy/cxy_ctl_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/cxy_ctl_SUITE.erl -------------------------------------------------------------------------------- /test/epocxy/cxy_fount_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/cxy_fount_SUITE.erl -------------------------------------------------------------------------------- /test/epocxy/cxy_fount_fail_behaviour.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/cxy_fount_fail_behaviour.erl -------------------------------------------------------------------------------- /test/epocxy/cxy_fount_hello_behaviour.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/cxy_fount_hello_behaviour.erl -------------------------------------------------------------------------------- /test/epocxy/cxy_regulator_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/cxy_regulator_SUITE.erl -------------------------------------------------------------------------------- /test/epocxy/epocxy_common_test.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/epocxy_common_test.hrl -------------------------------------------------------------------------------- /test/epocxy/ets_buffer_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/ets_buffer_SUITE.erl -------------------------------------------------------------------------------- /test/epocxy/fox_obj.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/fox_obj.erl -------------------------------------------------------------------------------- /test/epocxy/frog_obj.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/frog_obj.erl -------------------------------------------------------------------------------- /test/epocxy/rabbit_obj.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duomark/epocxy/HEAD/test/epocxy/rabbit_obj.erl --------------------------------------------------------------------------------