blob: 307c69a671c40e6b2af7b1c1463621b34bd80a17 [file] [log] [blame]
-module(foo_worker).
-ifdef(NO_CALLBACK_ATTRIBUTE).
-export([behaviour_info/1]).
behaviour_info(callbacks) -> [{status, 0}];
behaviour_info(_) -> undefined.
-else.
-callback status() -> 'idle' | 'busy'.
-endif.