6
votes
3answers
161 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, …
0
votes
3answers
31 views
Triggers/Callbacks in Ruby on Rails
Hello all,
We are creating a system in Ruby on Rails and we want to be able to offer our users a bit of control about notifications and actions that can take place when some pre-defined trigger …
0
votes
2answers
34 views
Blocking behavior of PyGTK’s main loop
My intention was to use pyGTK's main loop to create a function that blocks while it waits for the user's input. The problem I've encountered is best explained in code:
#! /usr/bin/python
import gtk
…
0
votes
2answers
31 views
Rails: How can I access the parent model of a new record’s nested associations?
Suppose we have the standard Post & Comment models, with Post having accepts_nested_attributes_for :commments and :autosave => true set.
We can create a new post together with some new …
0
votes
4answers
122 views
pass int to a C callback
Why i is not recognized correctly in the callback?
I think that maybe because after add_strip() "i" is destroyed, so how could i pass an int to that callback? Thanks.
29 void add_strip(int i,char …
1
vote
2answers
175 views
Is there a way to get upload progress using the HttpPostedFile class?
I want to use the HttpPostedFile Class to upload one or more large files to an ASP.NET MVC controller from a web page. Using this class, uploaded files larger than 256 KB are buffered to disk, rather …
0
votes
3answers
19 views
How to implement automatic properties in VS 2005 for a delegate callback
I'm attempting to get the TwainDotNet solution I found here (http://stackoverflow.com/questions/476084/c-twain-interaction) to compile, and I'm at my wits end.
This solution was obviously developed …
0
votes
3answers
61 views
beforeSend in $.getJSON
How do I use beforeSend callback in $.getJSON(cross domain).
More specifically $.getJSON is call is to a YQL service
Like
select * from html where
url=”http://www.yahoo.com”
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;
…
0
votes
0answers
52 views
How to tell difference between python class and object? [closed]
Possible Duplicate:
How to identiy whether a variable is a class or an object
I have a function which accepts 'things' which it calls.
def run_it(thingy):
result = thingy(something)
…
0
votes
2answers
83 views
activescaffold @records manipulation in a before filter
Hi All,
I would like to call
@records.collect{|r| r.set_some_virtual_attribute(@context)}
before rendering an activescaffold index view, but if I do this :
controller FooController < …
0
votes
1answer
40 views
ASP.NET UpdatePanel Javascript Callback
I came across this issue recently and thought it was really helpful. My question was, how would you call a piece of javascript after an updatepanel loads via AJAX in ASP.NET?
I needed to reinitialize …
0
votes
5answers
786 views
WCF Callback Channel gets disposed prematurely?
My application is using the net.tcp WCF service with a callback channel. For some reason I'm not able to send callbacks on event. Here's what I'm doing (all code server-side):
On initialization:
…
2
votes
8answers
409 views
Does using callbacks in C++ increase coupling?
Q1. Why are callback functions used?
Q2. Are callbacks evil? Fun for those
who know, for others a nightmare.
Q3. Any alternative to callback?
0
votes
4answers
182 views
C# -Delegates and Callbacks
Does the term callback in the context of delegates mean ,"a delegate delegating it works to another delegate inorder to finish some task" ?
Example :(Based on my understanding,I have implemented a …
