Add event-driven programming

This commit is contained in:
Angelos Chalaris
2018-09-01 14:02:12 +03:00
parent 952e01908c
commit 0a12bf7de6

View File

@ -0,0 +1,4 @@
### Event-driven-programming
Event-driven programming is a programming paradigm in which the flow of the program is determined by events (e.g. user actions, thread messages, sensor outputs).
In event-driven applications, there is usually a main loop that listens for events and trigger callback functions accordingly when one of these events is detected.