20
votes
4answers
2k views
Difference between a Postback and a Callback
I keep on hearing this words 'callback' and 'postback' tossed around.
What is the difference between two ?
Is postback very specific to the ASP.NET pages ?
7
votes
3answers
259 views
What steps do I need to take to use WCF Callbacks?
I am trying to learn WCF. I have a simple client and server application setup and upon pressing a button on the client, it gets an updated value from the server.
My next step is I am trying to do …
7
votes
8answers
917 views
Python: Callbacks, Delegates, … ? What is common?
Hi!
Just want to know what's the common way to react on events in python. There are several ways in other languages like callback functions, delegates, listener-structures and so on.
Is there a …
7
votes
2answers
1k views
How to Pass an Object Method as a Parameter in Delphi, and then Call It?
I fear this is probably a bit of a dummy question, but it has me pretty stumped.
I'm looking for the simplest way possible to pass a method of an object into a procedure, so that the procedure can …
6
votes
3answers
184 views
Managing lots of callback recursion in Nodejs
In Nodejs, there are virtually no blocking I/O operations. This means that almost all nodejs IO code involves many callbacks. This applies to reading and writing to/from databases, files, processes, …
6
votes
10answers
620 views
call a function named in a string variable in c
Hello everybody,
I want to call a function using a variable.Is it possible in C??
Actually, what I want to do is, get the function name from the user and store it in a variable say var. Now I want to …
6
votes
6answers
3k views
JavaScript Callback Scope
I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.
function foo(id) {
this.dom = document.getElementById(id);
this.bar = 5;
…
6
votes
5answers
4k views
What is a “callback” in C and how are they implemented?
I am new to C, Objective-C, and Core Audio programming on OSX. From the reading that I have done, Core Audio relies heavily on callbacks (and C++, but that's another story). I understand the concept …
6
votes
2answers
512 views
Alternatives to using delays when automatically testing an AJAX web UI
I will soon be working on AJAX driven web pages that have a lot of content generated from a Web Service (WCF).
I've tested this sort of thing in the past (and found it easy) but not with this level …
5
votes
7answers
252 views
A good way to implement useable Callbacks in C++
I have a custom Menu class written in C++. To seperate the code into easy-to-read functions I am using Callbacks.
Since I don't want to use Singletons for the Host of the Menu I provide another …
5
votes
5answers
633 views
What is a callback function?
What is a callback function?
5
votes
6answers
574 views
Using ActiveRecord, is there a way to get the old values of a record during after_update
Hey everyone,
Setup using a simple example: I've got 1 table (Totals) that holds the sum of the 'amount' column of each record in a second table (Things).
When a thing.amount gets updated, I'd like …
5
votes
4answers
1k views
How do I ‘validate’ on destroy in rails
On destruction of a restful resource, I want to guarantee a few things before I allow a destroy operation to continue? Basically, I want the ability to stop the destroy operation if I note that doing …
4
votes
3answers
137 views
How to implement a “callback” in Ruby
I'm not sure of the best idiom for C style call-backs in Ruby - or if there is something even better ( and less like C ). In C, I'd do something like:
void DoStuff( int parameter, CallbackPtr …
4
votes
2answers
103 views
play a waveform at a certain frequency in SDL callback function
I have a waveform 64 samples long. If the sampling rate is 44100 hz, how can I play(loop) this waveform so that it plays arbitrary frequencies?
frequency = samplerate / waveform duration in samples
…
