exactor icon indicating copy to clipboard operation
exactor copied to clipboard

Helpers for simpler implementation of GenServer based processes

Results 4 exactor issues
Sort by recently updated
recently updated
newest added

I have some function headers like so: `defcall set_open_device(%{"path" => path, "baud" => speed}), state: state do` "path" and "speed" are used in the function, but I see the following...

This implements #27 , custom dispatch logic by using an overridable `server_pid/1` function. I 'think' it works, but I have not yet had time to write tests for it (hopefully...

Right now, it is possible to either return a PID, or to register using `:global` or `:via`. However, this needs to be given as option when `ExActor.GenServer` is included (`use`d)....

The stop_server command is not usable from within defstart, seemingly because the :state_var is not set for it, yet you are able to return a {:stop, blah...} tuple from the...