Packages

Declarative subscriptions for Lustre

Current section

Files

Jump to
off_topic src off_topic internal off_topic_effects.erl
Raw

src/off_topic/internal/off_topic_effects.erl

-module(off_topic_effects).
-export([timer/2]).
timer(Interval, Callback) ->
{ok, Timer} = timer:apply_interval(Interval, Callback),
fun() ->
{ok, cancel} = timer:cancel(Timer),
ok
end.