Skip to content
/ proc Public
forked from miriampena/proc

Helper module to ease test by performing asyncronous requests to processes

License

Notifications You must be signed in to change notification settings

AdRoll/proc

 
 

Repository files navigation

proc

Helper module for test purposes. Allows the creation of processes that will wait on a receive loop for commands.

Example:

  1. Create a new process: Pid = proc:new(),

  2. Perform a syncronous request on a process: Now = proc:exec(Pid, {os, timestamp, []}),

  3. Perform a non-blocking asyncronous request on a process and then collect the result.

Ref = proc:async_exec(Pid, {timer, sleep, [500]}).

%% Do something else while the command is executed in Pid..

ok = proc:async_collect(Ref, 1000)),

About

Helper module to ease test by performing asyncronous requests to processes

Topics

Resources

License

Stars

Watchers

Forks

Languages

  • Erlang 100.0%