Packages

The Bloodbath Erlang library provides convenient access to the Bloodbath API from applications written in the Erlang language.

Current section

Files

Jump to
bloodbath src bloodbath_threading.erl
Raw

src/bloodbath_threading.erl

%% @doc ...
-module(bloodbath_threading).
-export([run_async/1]).
-spec run_async(fun()) -> pid().
run_async(Fun) ->
spawn(Fun).