Other Kind of routines

LucaMs

Expert
Licensed User
Longtime User
It seems to be a strange question but... it is :D.

I have some routines in an activity that is called from outside.
What should be their "type name"?

My English, sigh ...

I mean:
if I have some graphics routines I gather them in a Region that I could name "Graphic Routines".
If I have some routines that work on Strings, "String Routines".

For these routines? They are event handlers, but I'd like a specific name.


Is this question strange enough? :D


Thank you
 

wonder

Expert
Licensed User
Longtime User
Strange Routines?
 
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
Sorry, my bad English.

Try again.

Those are routines called from external modules (or server).

I think I should consider them Event Handlers, but perhaps they "have a specific type/kind name". (Views have their Event Handlers too!)

For example, CallBack is a technical name.



Mannaggia, se potessi scrivere in italiano :D

Vi garantisco che il mio italiano è ottimo :)
 
Upvote 0

wonder

Expert
Licensed User
Longtime User
An event handler is a callback routine that operates asynchronously and handles inputs received into a program (events). In this context, an event is some meaningful element of application information from an underlying development framework, usually from a graphical user interface (GUI) toolkit or some kind of input routine. On the GUI side, events include key strokes, mouse activity, action selections, or timer expirations. On the input side, events include opening or closing files and data streams, reading data and so forth.

Sauce: http://searchsoa.techtarget.com/definition/event-handler
 
Upvote 0
Top