callback$10749$ - translation to ολλανδικά
DICLIB.COM
AI-based language tools
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:     

Μετάφραση και ανάλυση λέξεων από τεχνητή νοημοσύνη

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

callback$10749$ - translation to ολλανδικά

ANY EXECUTABLE CODE THAT IS PASSED AS AN ARGUMENT TO OTHER CODE THAT IS EXPECTED TO CALL BACK THE ARGUMENT AT A GIVEN TIME
Callbacks; Callback routine; Callback function; Callback (computer science); Blocking callback; Deferred callback; Synchronous callback; Asynchronous callback
  • A callback is often back on the level of the original caller.

callback      
n. (in computers) terugbellen; een kommunikatie aansluiting waarbij de server die gebeld wordt door de gebruiker
call back         
WIKIMEDIA DISAMBIGUATION PAGE
Call-back; Callback (disambiguation); Call back
terugbellen

Ορισμός

callback
1. <programming> A scheme used in event-driven programs where the program registers a subroutine (a "callback handler") to handle a certain event. The program does not call the handler directly but when the event occurs, the run-time system calls the handler, usually passing it arguments to describe the event. 2. <communications, security> A user authentication scheme used by some computers running dial-up services. The user dials in to the computer and gives his user name and password. The computer then hangs up the connection and uses an auto-dial modem to call back to the user's registered telephone number. Thus, if an unauthorised person discovers a user's password, the callback will go, not to him, but to the owner of that login who will then know that his account is under attack. However, some PABXs can be fooled into thinking that the caller has hung up by sending them a dial tone. When the computer tries to call out on the same line it is not actually dialing through to the authorised user but is still connected to the original caller. 3. <communications> cost control callback. (2003-07-13)

Βικιπαίδεια

Callback (computer programming)

In computer programming, a callback or callback function is any reference to executable code that is passed as an argument to another piece of code; that code is expected to call back (execute) the callback function as part of its job. This execution may be immediate as in a synchronous callback, or it might happen at a later point in time as in an asynchronous callback. Programming languages support callbacks in different ways, often implementing them with subroutines, lambda expressions, blocks, or function pointers.