Tagged Questions
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).
8
votes
2answers
130 views
dispatching S4 methods with an expression as argument
I'm trying to convince an S4 method to use an expression as an argument, but I always get an error returned. A trivial example that illustrates a bit what I'm trying to do here :
...
6
votes
3answers
299 views
c# Generic overloaded method dispatching ambiguous
I just hit a situation where a method dispatch was ambiguous and wondered if anyone could explain on what basis the compiler (.NET 4.0.30319) chooses what overload to call
interface IfaceA
{
}
...
5
votes
1answer
517 views
how to extract from dispatch.json.JsObject
What do i need to do to extract the value for friends_count. i noticed that screen_name are already define in the Status object and case class. Do still require to extends Js or JsObject different
...
5
votes
5answers
156 views
How do I dispatch to a method based on a parameter's runtime type in C# < 4?
I have an object o which guaranteed at runtime to be one of three types A, B, or C, all of which implement a common interface I. I can control I, but not A, B, or C. (Thus I could use an empty marker ...
5
votes
2answers
1k views
AS3 - Event listener that only fires once
I'm looking for a way to add an EventListener which will automatically removes itself after the first time it fires, but I can't figure a way of doing this the way I want to.
I found this function ...
4
votes
1answer
356 views
How do you parse a JSON request with Dispatch?
I'm learning Scala, and attempting to understand how traits are working (specifically with the Dispatch library).
I've got something like this:
import dispatch._
import dispatch.liftjson._
object ...
4
votes
3answers
81 views
UI Dispatch Buffering?
I have a conundrum. I have "inherited" a very badly designed and very complex system which I am modernizing and rebuilding (with my team) piece-by-piece. The problem is that the current system is ...
4
votes
1answer
8k views
Android - Key Dispatching Timed Out
In my Android application I am getting a very strange crash, when I press a button (Image) on my UI the entire application freezes and after a couple of seconds I getthe dreaded force close dialog ...
4
votes
1answer
953 views
RuntimeException from Google Analytics for Android “sending message to a handler on a dead thread”
I am using Google Analytics for Android to track events, page views on an Android app. When calling the tracker's dispatch method, I receive a RuntimeException:
07-12 18:02:05.594: ...
4
votes
2answers
2k 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 ...
3
votes
2answers
42 views
understanding system call dispatcher for windows?
I am trying to do some reversing to find out a function call behind the scene.
While debugging using windbg I came across a call,
mov edx,offset SharedUserData!SystemCallStub
call dword ptr ...
3
votes
3answers
80 views
Implementing a Dispatch Table in Objective-C: how to declare an array of selectors
I'm trying to implement a dispatch table, so that I can call a selector with the following example code:
NSInteger i = 2;
[myObject performSelector:selectors[i]];
I'm trying to store user ...
3
votes
1answer
493 views
HTTPS POST with Scala and Dispatch
I am trying to do a HTTPS post with scala and the Dispatch library. I can't find where to mark my connection as being https not http. Here is the code I have so far
println("Running Test")
val http ...
3
votes
1answer
138 views
How to monkey patch a generic type tag function table
I found it interesting to read on one of the ways that you can do functional dynamic dispatch in sicp - using a table of type tag + name -> functions that you can fetch from or add to.
I was ...
3
votes
1answer
285 views
java event queue event dispatch flush/trap events
I have a design related question that I am trying to find an answer to.
Here is the scenario.
Suppose that you want to do something expensive (time-consuming) as a result of user input (e.g. loading ...
3
votes
1answer
254 views
Clojure multimethod dispath problem
I have those two sources:
(ns odo.IComplex)
(gen-interface
:name odo.IComplex
:methods [
[getReal [] Double]
[getImag [] Double]
[getAbs [] Double]
[getArg ...
3
votes
1answer
193 views
How can I programmatically determine which class/module defines a method being called?
In Ruby, how can I programmatically determine which class/module defines a method being called?
Say in a given scope I invoke some_method(). In the same scope I'd like to invoke a function ...
3
votes
2answers
877 views
How to use dispatch.json in lift project
i am confused on how to combine the json library in dispatch and lift to parse my json response.
I am apparently a scala newbie.
I have written this code :
val status = {
val httpPackage ...
3
votes
3answers
340 views
dispatch design pattern?
Suppose I have a class hierarchy in Java:
interface Item { ... };
class MusicBox implements Item { ... };
class TypeWriter implements Item { ... };
class SoccerBall implements Item { ... };
and I ...
3
votes
2answers
105 views
Is is possible to do an end-run around generics covariance in C# < 4 in this hypothetical situation?
Suppose I have a small inheritance hierarchy of Animals:
public interface IAnimal {
string Speak();
}
public class Animal : IAnimal {
public Animal() {}
public string Speak() {
...
3
votes
3answers
254 views
http(/* argument here */) How is this Object (Http) being used without an explicit or implicit method?
In the example for coding with Json using Databinder Dispatch Nathan uses an Object (Http) without a method, shown here:
import dispatch._
import Http._
Http("http://www.fox.com/dollhouse/" ...
3
votes
2answers
1k 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 ...
2
votes
1answer
460 views
Akka REST service + dispatch problem
I followed the example here. It works, fine. But now I need to perform some business logic in case get:Get =>
Required business logic includes using dispatch library. In a nutshell, I do a request ...
2
votes
2answers
52 views
Confusing method bindings
The output of this simple program is This is base.
public class mainApp{
private void func(){
System.out.println("This is base");
}
public static void main(String[] args){
...
2
votes
2answers
401 views
Actionscript 3: Sequence Diagrams for Event Handling
i have to draw some sequence diagrams for a software i wrote. In my Software i have some Objects that dispatch custom Events and other Objects that listens for these events.
When it comes to ...
2
votes
2answers
213 views
Java Threads — Perpetual Loop in Swing Event Dispatch Thread
I have a SwingWorker with the implementation:
public Void doInBackground() throws InterruptedException
{
while (true)
{
while(_update)
{
}
}
}
If ...
2
votes
1answer
387 views
How do I read response headers + body from single POST using scala's dispatch lib
I have been trying to use the dispatch library to download a file via an http POST request. The server returns a "content-disposition" header suggesting a filename for the data file it returns.
I ...
2
votes
4answers
169 views
How does an OS or a systems program wait for user input?
I come from the world of web programming and usually the server sets a superglobal variable through the specified method (get, post, etc) that makes available the data a user inputs into a field. ...
2
votes
1answer
325 views
What is a simple way to receive SNMP traps in Scala?
I'd love it if there is an awesome native Scala library for SNMP like there is Dispatch for HTTP but I can't find one. Is there one? Baring that, should I use a Java library like SNMP4J? What I want ...
2
votes
3answers
326 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
...
2
votes
1answer
724 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:
...
2
votes
3answers
910 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
1answer
42 views
Getting an HTTP response as Array[Byte] with Scala and Dispatch
I'm trying to download the response of an HTTP GET request as an Array[Byte] in Scala using dispatch, but the documentation is not helping and online searches didn't turn out to be helpful.
...
1
vote
1answer
61 views
When might a dispatch table be as good as method_missing in Ruby?
Are there any situations where a dispatch table, implemented as a hash of lambdas, might be as good, if not better, than over-riding Ruby's method_missing? I'm asking because I used this technique ...
1
vote
1answer
97 views
Getting a 302 http redirect location with Databinder-Dispatch
With databinder-dispatch 0.8.3 I'm trying to get the redirect url from a 302 http response, but I get the following exception:
Caused by: dispatch.StatusCode: Unexpected response code: 302
Here's ...
1
vote
0answers
90 views
chrome dispatching wheel event
I'm trying to dispatch a wheel event in chrome but still can't make it. I am using the WheelEvent object but seems that just cannot "init" it right. Whatever I do, delta is always 0. I looked at the ...
1
vote
2answers
101 views
Is it possible to dispatch events on regular objects (not DOM ones)?
I just found out that FileReader dispatches events just as if it was a DOM element. Is it? I wonder if it's possible to create an object similar to FileReader, which doesn't have a representation in ...
1
vote
0answers
241 views
Example of custom event dispatching in Android?
I have a scenario below, and was wondering if anyone had a good solution. Basically, I have a class which manages a custom ViewFlipper object. One of these views within the ViewFlipper instance ...
1
vote
1answer
137 views
C#-like signals or AS3-like events in Scala?
How do I implement C# style signals or AS3 style events in Scala? I mean mostly observer pattern. To dispatch change events. Thanks.
Or (what's even better) are there any libraries/framework which do ...
1
vote
1answer
515 views
AS3 Dispatch Custom Event from class to class
I want to dispatch a custom event from the Country() sto the MenuButton();
CountryEvent
package {
import flash.events.Event;
public class CountryEvent extends Event {
public static const ...
1
vote
1answer
447 views
Are there any Scala OAuth libraries that support OAuth 2.0?
I'm looking for both consumer and provider code. Dispatch and Lift's OAuth code both only target OAuth 1.0 right now.
1
vote
4answers
258 views
Use of multiple threads in a Java program and vs need to create Swing objects on EDT
Re: Requirement to create Swing Object on Event-Dispatch Thread.
I am working on an application, the purpose of which is to monitor and display the condition of various remote embedded servers. I'm ...
1
vote
1answer
271 views
Passing information back from EventListener to Activity
I'm new to Android, and event driven code in general. Rather than embed loads of anonymous event listener classes in my Activity to handle onClick events etc, I defined separate classes to keep the ...
1
vote
2answers
147 views
How could we create “instances” of a type or record on the fly
This question is closely related to this one but i think is more general.
Recently i try to create type "instances" on the fly with multimethods (or with a unique function constructor if possible), ...
1
vote
1answer
748 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
1answer
560 views
Designing a generic servlet which handles request dispatching
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 ...
0
votes
1answer
81 views
How to write coercion methods
I'm having a bunch of custom-made Reference Classes and would like to write coercion methods for some of them. It'd be nice if a function call would look like this:
objectCoerce(src=obj, to="list", ...
0
votes
0answers
46 views
JAX-WS Dispatch Client with Service.Mode.PAYLOAD
I wrote a simple dispatch client with "Service.Mode.PAYLOAD", and the code looks something like this ..........
String request =
"<Notify xmlns=\"http://testpublisher.saig.com/\">" +
...
0
votes
1answer
53 views
integrating spring 2.5.6 and Struts 1.3.8
I want to clear some moments about integrating spring and struts. I have only one action class per application extended from MappingDispatchAction. So, actually my app when doing something uses not ...
0
votes
2answers
95 views
Flash Starling dispatching Events
is it possible to send data to starling object after var mStarling:Starling = new Starling(StarlingClass, stage); or maybe dispatching event from main class and then listening event in starling class.
...