How could I implement deferred pattern in elixir?
Let me explain what it is. Let say I have some fn()
which should be implemented with n
seconds delay after now. But if I call this fn()
second time this function should be implemented in n
seconds after second call and so on. There should be a method to exit this function evaluation at all too.
You can take a look at Lodash's _.debounce function for the reference.
A very naive and simple solution could use raw processes.
Let's see an example
However, this has many problems - our "debouncer" process effectively lives forever, we can't cancel the debounce and reliability is, at best, sketchy. We can improve, but we'll loose the return value of a simple fun that we could just call, and instead we'll need to call a special function to "apply" our debouncer.
Let's see an example:
This still has some possible corner cases - a production version would probably use a Task or a GenServer.