Current section

Files

Jump to
opuntia src opuntia.hrl
Raw

src/opuntia.hrl

-ifndef(OPUNTIA).
-define(OPUNTIA, true).
-record(token_bucket_shaper, {
shape :: opuntia:shape(),
available_tokens :: opuntia:tokens(),
last_update :: integer(),
debt :: float() %% Always in the range [0.0, 1.0]
%% Signifies the unnecesary number of milliseconds of penalisation
}).
-endif.