Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 폴안티스파이앱
- 책상
- 썬
- 설치
- 라곰프레임워크
- 한강 #야경 #한강야경
- 명주
- java8 람다식
- 스파이앱
- lagom framework
- lagom
- 모니터
- TortoiseSVN
- 폴-안티스파이앱
- volatile
- svn
- Subversion
- 폴안티 스파이앱
- 스포티지r 풀체인지
- 차이점
- 라곰
- 폴-안티 스파이앱
- 정통춘천닭갈비
- CVS
- 폴-안티
- 윈도우즈 비스타
- 폴안티
- windows vista
- Lambda Expressions
- selenium #scraping #webscraping #jsoup #firefox
Archives
- Today
- Total
장발의 개발러
Event Loop 본문
Event loop
From Wikipedia, the free encyclopedia
In computer science, the event loop, message dispatcher, message loop, message pump, or run loop is a programming construct that waits for and dispatches events or messages in a program. It works by polling some internal or external "event provider", which generally blocks until an event has arrived, and then calls the relevant event handler ("dispatches the event"). The event-loop may be used in conjunction with a reactor, if the event provider follows the file interface (which can be selected or polled). The event loop almost always operates asynchronously with the message originator.
When the event loop forms the central control flow construct of a program, as it often does, and is thus at the highest level of control within the program, it may be termed the main loop or main event loop.