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
- Subversion
- java8 람다식
- 폴-안티스파이앱
- selenium #scraping #webscraping #jsoup #firefox
- windows vista
- CVS
- lagom framework
- 윈도우즈 비스타
- Lambda Expressions
- svn
- volatile
- 라곰
- 설치
- 썬
- 정통춘천닭갈비
- 폴안티
- 폴-안티
- 한강 #야경 #한강야경
- 차이점
- 책상
- lagom
- 스파이앱
- 폴-안티 스파이앱
- 라곰프레임워크
- 스포티지r 풀체인지
- 폴안티 스파이앱
- TortoiseSVN
- 폴안티스파이앱
- 모니터
- 명주
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.