Skip to content

The re-implemented 'gen_server' behavior for OTPless Erlang.

License

Notifications You must be signed in to change notification settings

erlangsters/worker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Worker Behavior (aka 'gen_server')

A re-implementation of the gen_server behavior (from the OTP framework) for the OTPless distribution of Erlang, named worker.

🚧 It's a work-in-progress, use at your own risk.

Written by the Erlangsters community and released under the MIT license.

Getting started

XXX: To be written.

Using it in your project

With the Rebar3 build system, add the following to the rebar.config file of your project.

{deps, [
  {worker, {git, "https://github.com/erlangsters/worker.git", {tag, "master"}}}
]}.

If you happen to use the Erlang.mk build system, then add the following to your Makefile.

BUILD_DEPS = worker
dep_worker = git https://github.com/erlangsters/worker master

In practice, you want to replace the branch "master" with a specific "tag" to avoid breaking your project if incompatible changes are made.

About

The re-implemented 'gen_server' behavior for OTPless Erlang.

Resources

License

Stars

Watchers

Forks