Difference between revisions of "Event handling"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "In computer programming, '''event handling''' refers to the process of a subroutine running in response to an event. == Description =...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
In [[computer programming]], '''event handling''' refers to the process of a [[subroutine]] running in response to an [[Event (computer programming)|event]].
+
In [[computer programming]], '''event handling''' refers to the process of a [[subroutine]] running in response to an [[Event (computing)|event]].
  
 
== Description ==
 
== Description ==
Line 13: Line 13:
 
== See also ==
 
== See also ==
  
* [[Event (computer programming)]]
+
* [[Event (computing)]]
 
* [[Event-driven programming]]
 
* [[Event-driven programming]]
* [[Subroutine]
+
* [[Subroutine]]
 +
 
 +
[[Category:Computer programming]]

Latest revision as of 08:30, 22 August 2016

In computer programming, event handling refers to the process of a subroutine running in response to an event.

Description

The subroutine is commonly referred to as an event handler.

When a specified event occurs, the subroutine runs.

The running of the subroutine is known as event handling.

The subroutine is said to "handle the event".

See also