Dynamic dispatch (also known as dynamic binding) is the process of mapping a message to a specific sequence of code (method) at runtime. This is done to support the cases where the appropriate method cannot be determined at compile-time (i.e. statically).

learn more… | top users | synonyms

2
votes
2answers
66 views

Is it possible to boost::bind to a member function of a known class but a (yet) unknown object?

I have read here about how boost:bind works, especially that it - besides other things - generates something like this: struct unspecified_type { ... some members ... return_type operator()(int ...
4
votes
1answer
84 views

C++ function dispatch with template parameters

I'm in the process of refactoring a large class -- let's call it Big -- that has a huge amount of copy-paste code. Much of this copy-paste code exists in switch cases where only the types involved end ...
0
votes
3answers
37 views

iOS Delay even when using dispatch

I have a wallpaper app that has a paged scrollview on the main view. each page of the scrollview displays 9 images. When the view is scrolled I'm loading the next 10 pages of images and set the ...
1
vote
1answer
81 views

Import works, but does not import everything in the package?

I'm trying to use dispatch with a 3rd party website that has an OAuth authentication, but I'm having trouble importing things from dispatch. Consumer api it is clearly there in the library, but for ...
3
votes
1answer
26 views

dispatch a S4 method over the slot of a S4 class

I would like to create a S4 method 'myMethod' that dispatches not only on the class of the first argument of the function, but also on the value of one of the slot of this class. for instance ...
1
vote
1answer
180 views

Understanding dispatch_async

I have question around this code dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ NSData* data = [NSData dataWithContentsOfURL: kLatestKivaLoansURL]; ...
0
votes
1answer
40 views

AS3 How to dispatch timer event to another class?

I am trying to dispatch event every second from Mytimer class and catch the event from Main class. I've declared variable "sus" as integer = 10. I have nothing so far, no output, nothing. Some help ...
0
votes
1answer
29 views

Magento Module SugarCRM Integration

I have created a module. here is my config.xml: <config> <modules> <Empresam_SugarIntegration> <version>0.1.0</version> ...
1
vote
1answer
68 views

Using dispatch queue for smooth scrolling in uitableview giving shuffled values in array

I am showing post on wall, and the like, dislike buttons that have to show the number of likes and dislikes on it. The data of post is coming from different API at once. But the values of like and ...
1
vote
1answer
59 views

Simple ScalaXB example causes NoSuchMethodError in Dispatch

I am new to Scala and I was trying out an example with ScalaXB. I am using IntelliJ IDEA and the latest Scala version 2.10.1. ScalaXB uses Dispatch so I added that (version 0.9.5) as a dependency to ...
0
votes
1answer
249 views

How do we dispatch Google Analytics events when iOS app goes to the background?

My iOS app has links to Apple's App Store in it and I am trying to track those as events. The problem is that we can't get my app to properly dispatch the GA events before it goes into the ...
0
votes
0answers
43 views

Magento events are not firing

I have a weird situation. I am trying to hook on to sales_order_save_after event but it won't work. To debug this I am doing Mage::log() in Mage.php to see what events are firing. Suprirsing, its only ...
1
vote
2answers
108 views

Dispatch and library dependencies

Hi I am turning here as a last resort but I'm at my wits end. I was trying to learn dispatch so I can do my next web project in scala but I can't even make it past the tutorial. This is what I'm ...
1
vote
2answers
53 views

How do i locate dispatchEvent methods in magento?

say i have found this line Mage::dispatchEvent('catalog_product_is_salable_before', array( 'product' => $this )); how do i find the method that is called by Mage::dispatchEvent, i have ...
0
votes
1answer
106 views

Can't dispatch custom event from one class to another in Flash AS3

This is my custom event class: package{ import flash.events.Event; public class PetEvent extends Event{ public static const ON_CRASH:String = "onCrash"; public function ...
0
votes
0answers
110 views

Dispatch Touch Events to Different Window (like PopUpWindow or Dialog Window)

I have one doubt related to Touch Event Dispatch. Usually Activity is associated with one Window, so if i use code like somewhat below , events are dispatched properly to corresponding view at those ...
2
votes
1answer
63 views

How do I get the value of a failed request in Dispatch?

When I make a request in Dispatch, I apply the Promise and get this: Left(dispatch.StatusCode: Unexpected response status: 400) How do I get the actual text of the response? I'm using Solr and it ...
0
votes
2answers
102 views

bash: partial match up to a complete word for case

I wrote a bash script that takes a command as the first positional parameter and uses a case construct as a dispatch similar to the following: do_command() { # responds to invocation `$0 command ...
3
votes
1answer
55 views

Java Dispatching-Runtime type

I am confused with method dispatching in java. Why does the first method "a.m1(b)" call to the class A? The calling variable is a. And its runtime type is B, isn't it? class A { public void ...
0
votes
0answers
46 views

Macruby can not load dispatch gem in application

I want to use Dispatch gem in MacRuby to use concurrency in my app. But I got into a tricky problem with this. I tried to install Dispatch gem via 'gem install dispatch', via 'macgem install ...
1
vote
1answer
136 views

Scala dispatch reboot timeout

I am using the dispatch reboot library version 0.9.5 (http://dispatch.databinder.net/Dispatch.html) in my project. Via sbt I have the following line: libraryDependencies += "net.databinder.dispatch" ...
2
votes
2answers
227 views

scala - dispatch example not working

I'm following the very first example in the dispatchdocs - val svc = url("http://api.hostip.info/country.php") val country = Http(svc OK as.String) for (c <- country) println(c) ...
0
votes
0answers
76 views

Forcing SSLv3 for scala/dispatch

I keep getting a Recieved fatal alert: bad_record_mac when making a GET request using Dispatch in Scala. After some googling I saw some recommendations to force SSLv3, but I can't find any ...
2
votes
1answer
36 views

define S4 method with 3 dots

I am trying to define the "c" method for an object I created. something like setMethod("c", signature(...), definition=function (...) { myObject = list(...)[[1]] ...
0
votes
0answers
82 views

Routing and Dispatching, doing it right, using classes

I understand that I mustn't reinvent the wheel and go over and over this question again and again. But I have no way of understanding this until I see it work in my face. Okay, here is the current ...
0
votes
0answers
16 views

how to dispatch specific location to any GPS device

I want a GPS device that i can receive locations data from a friend using a Wi-Fi connection, is this possible? for example: my friend is sitting in front of his PC and want to send me a path ...
1
vote
1answer
52 views

Is there any benefits at all to use dispatch_once pattern with primitives?

Which is better? static unsigned unitFlags; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | ...
1
vote
2answers
41 views

How Do I Attach A Body To a Delete in Dispatch?

I have a Dispatch 0.8 DELETE handler that needs to have a body. So I have a normal DELETE that works fine: def delete = request.DELETE ># identity I tried this: def delete(body: String) = ...
0
votes
2answers
249 views

Why BackgroundWorker always is busy?

I realized something strange in my background worker in my WPF application. What I'm trying to accomplish right now is to wait until the BW finishes to start another thread. Check the following ...
6
votes
5answers
197 views

Best practices for Python if-elif-elif-elif when dispatching requests

I have 5 sets of request's categories defined as python dicts, for example: category1 = {'type1', 'type2', 'type3'} category2 = {'type4', 'type5'} category3 = {'type6', 'type7', 'type8', 'type9'} ...
0
votes
2answers
169 views

use dispatch 0.9.5 behind proxy?

I'm trying to execute (in IntelliJ IDE or from sbt command-line) this very basic dispatch snippet from behind a proxy : import dispatch._ val svc = url("http://api.hostip.info/country.php") val ...
0
votes
0answers
39 views

How can I get the count of elements in a dispatch_queue

I have created a dispatch queue for sending network data, such as messages or pictures. One block is for sending one message or picture. And put them in the dispatch queue. When the socket did send a ...
0
votes
1answer
175 views

How to suspend async task in iPhone?

I'm using async task for fetching images from Web on my main view controller. When user click on any cell on my table view I would like to suspend the Async tasks and go to another view.How Can I do ...
1
vote
1answer
294 views

Performing a simple HTTP GET with Dispatch

The following is a valid query in a browser (e.g. Firefox): http://www.freesound.org/api/sounds/search/?q=barking&api_key=074c0b328aea46adb3ee76f6918f8fae yielding a JSON document: { ...
0
votes
2answers
115 views

Is there a way to infer the type of an object?

This may be a stupid question, I suspect I know the answer (no) because I seem to be hitting a wall here. Given I have a collection of objects derived from certain class: class BaseClass; class ...
0
votes
2answers
142 views

iOS: table view created before xml parsing complete

OK I'm hoping I'm missing something basic here - I am not very expert at this. It should be self-explanatory without example code: I parse a web-hosted xml file consisting of a list of titles to be ...
0
votes
2answers
73 views

Selecting the right strategy based on two object types

I'm not sure how to name this problem, so I'm going to try to explain as good as I can. I want to be able to switch strategies depending on the types of two different objects. To make this work, I am ...
1
vote
3answers
160 views

queue in Objective-c

how I can run my code one piece at a time. That is, I have a code that you want to perform consistently. Example: - (IBAction)downloadPressed:(id)sender { //1 CGRect frameDelete = ...
8
votes
2answers
568 views

Google Analytics iOS v2beta3 - manual dispatch doesn't work in applicationWillResignActive

I've been working with Google's Analytics SDK v2beta3 and have everything working except I can't get manual dispatch to work when the app leaves the active state. (fyi, for my app I need to reserve ...
0
votes
0answers
31 views

After the disk io scheduler, what is the next?

When write to a disk, the disk IO scheduler(default CFQ) will merge the request if possible. After that, the scheduler will dispatch the request, according to CFQ, the function is ...
0
votes
0answers
115 views

zend 2 widgetized contents

i am trying to create a widgetized contents.. basically i want to have blocks in my layout that gets populated from different module/controller/actions ... i tried using $this->action in view but ...
0
votes
1answer
302 views

Return exact response/header?

From the client-side of a webapp, I hit a server-side route which is just a wrapper for a third-party API. Using dispatch, I am trying to make that server-side request return the exact header and ...
0
votes
1answer
211 views

How can I stop the Dispatch Queue

I am using Dispatch Queue for loading the images but I don't know how to stop the queue if I don't want it to load all the images at some point. - (void) loadImageInBackgroundArr1:(NSMutableArray ...
0
votes
1answer
98 views

Automating an Application using COM

I am building an automation interface for an existing application. After implementing a DLL server and an EXE server (mainly for getting familiar with the basics of COM) I am now at the point where I ...
4
votes
1answer
143 views

What's the difference between performing an NSURLRequest and responding to delegates as opposed to using dispatch_async?

I'm trying to get my head around a asynchronicity; dispatch, multiple threads, run loops etc etc. What's the difference between: 1) creating an NSURLRequest and NSURLConnection in a given method, ...
0
votes
1answer
221 views

Struts 1.3: when is better to use DispatchActions than Action?

In what cases is better to use DispatchActions than Action?
0
votes
0answers
25 views

saving data using coredata inside global queue

I have a requirement where I have to keep my local app data(CoreData) insync with data stored on server(sql server and I have web api to fetch the data). I don't want the download process in main ...
1
vote
0answers
102 views

Simulate html listbox dropdown on trigger over other action

Please someone help me on the issue below. I have a list dropdown box to be opened on trigger of a img div on top of it. This works perfect in chrome, while it does not work in all other browsers ...
0
votes
1answer
153 views

How can I wait for result from geocodeAddressString iPhone

I know its something to do with locks or dispatch groups, but I just cant seem to code it... I need to know if the address was a valid address before leaving the method. Currently the thread just ...
3
votes
3answers
102 views

Java parameter confusion

In the code below why is it that o1.equals(o2); calls equals(Object o) not the equals(EqualsTest et) even though o1 and o2 are referencing objects of type EqualsTest! public class EqualsTest { ...

1 2 3 4