6
votes
5answers
125 views
Objective-C “messages” - what’s the right way to read it?
You can declare a method in objective-c and name each parameter twice, basically.
I get the idea that this is powerful, but I'm not quite sure how to use it yet...
When John Gree …
0
votes
1answer
25 views
Single instance app with message passing via cmd line?
I have a C# app that is launched via command line. Usually data is pass through the command line such as add (app -a string). I would like only ONE instance of the app to be opened …
0
votes
2answers
57 views
OpenCV Multi-Threaded Thread Message
I am writing a program using .Net 3.5 and OpenCV 1.1. I have multiple threads that need to get an image variables from the web camera on my computer, the problem being I get memory …
4
votes
3answers
208 views
What makes Erlang suitable for soft real-time applications?
Some background
I'm working on building a programming language for digital media programming, which should support concurrency using no-sharing message passing and soft real-time …
2
votes
5answers
98 views
When is messaging (e.g. JMS) an alternative for multithreading ?
I work on a data processing application in which concurrency is achieved by putting several units of work on a message queue that multiple instances of a message driven bean (MDB) …
1
vote
1answer
70 views
What is the fasted method to pass messages between different processes in C#?
I have a bunch of AddIns loaded by the Microsoft AddIn Framework all in separate processes.
Packets come in from the one side (also an AddIn) then get send to a controller (also a …
6
votes
3answers
338 views
How do I find out the path of the file triggered by opening a file with a custom file extension?
How do i get the location of the file that i used to open my programs with?
Example: if i create a new extention ".xyz" say and i tell windows that i want to open the file type . …
0
votes
3answers
354 views
what are the disadvantages of RPC with respect to message passing?
what are the disadvantages of RPC with respect to message passing?
0
votes
3answers
216 views
OOP - Message Passing in C#
What is the example of the OOP concept 'Message Passing' in C# (calling methods/Passing parameters/Firing Events/Handling Events/???) and why is it called message passing?
0
votes
3answers
143 views
Options for a message passing system for a game
I'm working on an RTS game in C++ targeted at handheld hardware (Pandora). For reference, the Pandora has a single ARM processor at ~600Mhz and runs Linux. We're trying to settle …
0
votes
4answers
220 views
Java: appropriate way to pass messages between client and servlet?
My system successfully passes objects from a client to servlet. However it is primitive as it was built to cater for Java 1.1. The message object it passes consists of an int (repr …
3
votes
1answer
97 views
Choosing a consistency model for a concurrent programming language
I am in the design phase of a programming language, currently thinking about the concurrency aspects. I need to figure out a consistency model, i.e. how data is handled by concurre …
1
vote
2answers
91 views
Performances evaluation with Message Passing
Hi,
I have to build a distributed application, using MPI.
One of the decision that I have to take is how to map instances of classes into process (and then into machines), in orde …
4
votes
5answers
2k views
How do I send a string from one instance of my Delphi program to another?
What is the best and easiest way to send a string from one instance of my program to another instance of my program? The receiving program has to execute a procedure, using the rec …
1
vote
1answer
190 views
C#/.Net equivalent of NSNotification
I'm an Objective-C developer porting an application to the .Net world. In my Obj-C application, I use NSNotification objects to communicate asynchronously between a handful of obje …
