Created
September 17, 2022 14:54
-
-
Save ibrahimsn98/aaf041cc7cc729b45e2142e7801d0eb2 to your computer and use it in GitHub Desktop.
ty-demeter-blog-2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun sendEvent(name: String, group: String, screen: String, parameters: Map<String, String>) { | |
singleEventDispatcher.dispatch(name, group, screen, parameters) | |
} | |
fun enqueueEvent(name: String, group: String, screen: String, parameters: Map<String, String>) { | |
batchEventDispatcher.dispatch(name, group, screen, parameters) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment