Packages

Erlang round-robin load balancer for Erlang processes based on ETS

Current section

Files

Jump to
erlpool src erlpool_globals.erl
Raw

src/erlpool_globals.erl

-module(erlpool_globals).
%% Module stub.
%% Will be replaced by the module with the same name at runtime.
%% The only purpose for the module is to suppress warnings from code analyzers,
%% as dynamically compiled module is not available during the build.
-export([
size/1
]).
size(_) ->
{error, not_found}.