We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reflex.Time
For example, with relevant and distinct use cases (but stubbed out for clarity, as sortableList does), something like:
sortableList
do eQuery_Delayed <- delay 2 (updated dQuery) dResults <- holdDyn [] (eQuery_Delayed <&> (_searchQuery . _parseQuery)) …
do eRequest_Throttled <- throttle 1 eRequest eResponse <- performEventAsync $ eRequest_Throttled <&> (\request handle -> liftIO $ do response <- _send request handle response) …
do eEdits_Batched <- batchOccurrences 5 eEdit eResult <- performEvent $ eEdits_Batched <&> (\edits -> _commit (toList edits)) …
do e_Debounced <- debounce 0.001 e -- within a millsecond. …
https://hackage.haskell.org/package/reflex-0.9.3.1/docs/Reflex-Time.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, with relevant and distinct use cases (but stubbed out for clarity, as
sortableList
does), something like:https://hackage.haskell.org/package/reflex-0.9.3.1/docs/Reflex-Time.html
The text was updated successfully, but these errors were encountered: