Tagged Questions

3
votes
4answers
183 views

Multiple dispatch in C++

Hi, I am trying to understand what multiple dispatch is. I read a lot of various texts but I still have no idea what multiple dispatch is and what it is good for. Maybe the thing I am missing is piece …
3
votes
2answers
118 views

jQuery dispatch event from a plugin for multiple listeners

I'm looking for a way to dispatch an event from my jQuery plugin so that it can have multiple listeners for that event. I have the plugin setup so that it returns a reference to itself so that I can …
3
votes
2answers
465 views

For Objective-C … Pointer to method

I want to setup a Method dispatch table and I am wondering if it is possible to create pointer to a method in Objective-C (like pointer to function in C). I tried to use some obj-c runtime functions …
2
votes
4answers
120 views

How can I create a type based lookup table in order to implement multiple-dispatch in C++?

I'm attempting to make a messaging system in which any class derived from "Messageable" can receive messages based on how the function handleMessage() is overloaded. For example: class Messageable …
1
vote
2answers
49 views

Dynamic method dispatch based on value of variable

Hi there, Long switch statments are often frowned upon. The solution is to use polymorphism. However what if the thing I'm switching on is not a type code? What I would like to do is replace the …
1
vote
1answer
65 views

Problem with Scala Dispatch Databinder library

I am using the Dispatch Databinder library for Http in Scala. I have this method. def testCheckPage(url:String):String = { try { var http = new Http var request = new Request(url) …
1
vote
3answers
192 views

method overloading and polymorphism

I'm writing a .NET web application in which administrators can customize the various data entry forms presented to their users. There are about half a dozen different field types that admins can …
1
vote
4answers
118 views

how to dispatch network requests to the (geographically) closest server

I'm a Java coder and not very familiar with how networks work (other than basic UDP/TCP connections) Say I have servers running on machines in the US, Asia, Latin America and Europe. When a user …
0
votes
1answer
25 views

Flex Event.ID3 dispatches twice

Hi, Why does this code mySound.addEventListener(Event.ID3, myID3Handler); cause the myID3Handler to run twice ?! I also notice that values provided to the handler are not the same, actually the …
0
votes
0answers
9 views

Polymorphism in AspectJ

I am trying to decide which is the better way to dispatch on a type in AspectJ. Suppose I am performing a computation on a tree with three kinds of nodes. I could then write a simple Java method: …
0
votes
0answers
48 views

How to dispatch url with subdomain in Zend PHPUnit Controller test?

I want to test my controller which works on subdomain www.username.domain.com The problem is when I dispatch in ControllerTestCase it throws Zend_Controller_Dispatcher_Exception routes.php: …
0
votes
1answer
123 views

Designing a generic servlet which handles request dispatching

Hi! I have a design question :) I want to have multiple servlets but I dont want to configure a new servlet with a new name each time and extend the HttpServlet. I was thinking of having a generic …