Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

26
votes
3answers
483 views

The actor model: Why is erlang special? Or, why do you need another language for it?

I've been looking into learning erlang, and as a result, have been reading (okay, skimming) about the actor model. From what I understand, the actor model is simply a set of functions (run within ...
17
votes
2answers
967 views

How does Actors work compared to threads?

Is there any good and short explanation of how Actors works compared to threads? Can't a thread be seen as an actor and send messages to other threads? I see some difference, but it's not that clear ...
11
votes
7answers
371 views

What other programming languages have a Smalltalk-like message-passing syntax?

What languages are there with a message-passing syntax similar to Smalltalk's? Objective-C is the only one I'm familiar with. Specifically, I was wondering if any other language implementations exist ...
8
votes
4answers
1k views

What is the difference between message-passing and method-invocation?

Is there a difference between message-passing and method-invocation, or can they be considered equivalent? This is probably specific to the language; many languages don't support message-passing ...
7
votes
5answers
456 views

Parallelism in Python

What are the options for achieving parallelism in Python? I want to perform a bunch of CPU bound calculations over some very large rasters, and would like to parallelise them. Coming from a C ...
7
votes
4answers
839 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 (i.e. do your best ...
7
votes
5answers
7k 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 received string as a ...
6
votes
4answers
527 views

Does Erlang always copy messages between processes on the same node?

A faithful implementation of the actor message-passing semantics means that message contents are deep-copied from a logical point-of-view, even for immutable types. Deep-copying of message contents ...
6
votes
5answers
334 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 Greets Kelly: [ p ...
6
votes
3answers
1k 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 .xyz with ...
5
votes
4answers
626 views

Node.Js in Erlang style?

I am a complete noob when it comes to both Node.Js and Erlang. But wouldn't it be possible to build a Node.js app that emulates Erlang behavior? e.g. you pass json messages across an distributed ...
5
votes
2answers
434 views

How does Erlang pass messages between processes on the same node?

Between nodes, message are (must be) passed over TCP/IP. However, by what mechanism are they passed between processes running on the same node? Is TCP/IP used in this case as well? Unix domain ...
5
votes
4answers
353 views

Canonical pattern reference in Actors programming model

Is there a source, which I could use to learn some of the most used and popular practices regarding Actor-/Agent-oriented programming? My primary concern is about parallelism and distribution limited ...
5
votes
2answers
244 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 concurrent processes ...
4
votes
1answer
88 views

How to implement message passing in Firefox extension?

I have a file which overwrites overlay.xul that overwrites browser.xul. I want to implement message passing in a similar way as implemented in chrome extensions. chrome.manifest- content helloworld ...
3
votes
2answers
45 views

Cancel an already executing task with Celery?

I am new to Django and Celery. I have been reading the doc and searching but cannot seem to find a straight answer: Can you cancel an already executing task? (as in the task has started, takes a ...
3
votes
3answers
66 views

Calling a subclass method on a variable typed as superclass

I have created a class named Foo: @interface Foo:NSObject{ int myInt; } @property int myInt; @end and a subclass of Foo named Bar: @interface Bar:Foo{ NSString *myString; } @property ...
3
votes
1answer
78 views

Are seda and the actor model essentially equivalent?

SEDA is essentially a set of independent "services" that communicate with each other via queues, which could further be abstracted as message passing. The actor model is a set of independent ...
3
votes
1answer
67 views

How to implement whileTrue control flow method with Obj-C Blocks?

Is it possible to implement something like a Smalltalk-style whileTrue: method in Objective-C using blocks? Specifically, instead of: int count = 0; while (count < 10) { NSLog(count); count++; ...
3
votes
2answers
5k views

How to send and receive broadcast message

I am trying to pass data between two activities that are inside of tabs. I am trying to use the sendBroadcast. With breakpoints set I never reach the OnReceive. manifest : <activity ...
3
votes
5answers
1k views

Java: High-performance message-passing (single-producer/single-consumer)

I initially asked this question here, but I've realized that my question is not about a while-true loop. What I want to know is, what's the proper way to do high-performance asynchronous ...
3
votes
2answers
399 views

What library can I use to do simple, lightweight message passing?

I will be starting a project which requires communication between distributed nodes(the project is in C++). I need a lightweight message passing library to pass very simple messages(basically just ...
3
votes
1answer
865 views

Convert this Scheme function into a different form?

So here's one way to define a sum as a message passing object: (define (make-sum . exps) (let ((len (length exps))) ;; first handle variable length operands (cond ((= len 0) ...
2
votes
2answers
62 views

Message passing between two programs

Currently I have two standalone C++ programs, a master and a slave. The master writes some data to shared memory, using boost::interprocess, and then launches the slave, which is able to read from the ...
2
votes
2answers
117 views

Chrome Extension: Message passing confusion

I'm trying to send the number of checked items on a page over to a popup. The add input button on the popup alerts or sends to the console the amount of checkboxes checked on the webpage. My script ...
2
votes
4answers
176 views

MPI_Bcast: Efficiency advantages?

In MPI, is MPI_Bcast purely a convenience function or is there an efficiency advantage to using it instead of just looping over all ranks and sending the same message to all of them? Rationale: ...
2
votes
3answers
740 views

Passing data from popup to popup in Flex

I have a web application which contains a data grid. Double clicking on any row of that grid will open a popup (lets call it popup1). Now this popup1 again opens a new popup(lets call it popup2). ...
2
votes
10answers
1k views

Java: Is `while (true) { … }` loop in a thread bad? What's the alternative?

Is while (true) { ... } loop in threads bad? What's the alternative? Update; what I'm trying to to... I have ~10,000 threads, each consuming messages from their private queues. I have one thread ...
2
votes
2answers
135 views

How can I get around my “object reference” issue when passing messages to an actor?

A while back I put together a simple class named Actor that was my implementation of the Actor Model. Since then I've used it with great success (Minus some annoying workarounds for the lack of a ...
2
votes
1answer
121 views

Has the `message-passing/shared-state' dilemma (concurrency & distribution) taken form of a `Holywar'?

I'm not too well-informed about the state of the discussion about which model is better, so I would like to ask a pretty straight question: Does it look like two opposing views having really heatened ...
2
votes
2answers
410 views

Is the MailboxProcessor type a replacement for locks?

I have been slowly examining all of the features that F# brings to the table. One that has particularly piqued my interest is the MailboxProcessor. The equivalent of this in C# would most likely use ...
2
votes
3answers
1k views

What's the difference between the message passing and shared memory concurrency models?

Correct me if I'm wrong, but I'm surprised this hasn't been asked before on here ...
2
votes
2answers
930 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 violation errors ...
2
votes
5answers
1k 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) listen to. Other ...
2
votes
3answers
1k 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?
2
votes
2answers
164 views

Performances evaluation with Message Passing

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 order to take maximum ...
2
votes
1answer
288 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 objects. Is there some ...
2
votes
3answers
550 views

Message passing in a plug-in framework

First off, there's a bit of background to this issue available on my blog: http://www.codebork.com/coding/2008/06/25/message-passing-a-plug-framework.html ...
1
vote
1answer
42 views

Stuck at message passing background.html >> contentscript.js (chrome extension)

I know it's been here like thousand times, but I'm stuck now. I've read plenty of answers and studied the code.google.com but didn't succeed. I am trying to send a request in a chrome extension from ...
1
vote
2answers
60 views

Threads - Message Passing

I was trying to find some resources for best performance and scaling with message passing. I heard that message passing by value instead of reference can be better scalability as it works well with ...
1
vote
1answer
36 views

Actor Concurrency Model and Caching

We use caching heavily within our software. The concept of a "put/get" datastore corresponds to the "Shared State Concurrency Model", which suffers from a number of disadvantages when compared to ...
1
vote
1answer
90 views

Ruby programming style: Asynchronous message passing

Hopefully this is not too subjective... I am new to the idea of asynchronous message-based programming -- in other words, writing a collection of self-sufficient "mini-programs" that all run ...
1
vote
1answer
76 views

How to send large Messages to the WCF Services?

I have one DataContract in the WCF service.In that it has one Array and i am setting that array in the Client code. If I set the array to more than 1000 thousand its throwing up an error saying ...
1
vote
1answer
56 views

chrome extension: object type lost in message-passing

I'm working on a chrome-extension and I've the following problem. When a certain event happend, my background page create a new tab (page) with chrome.tabs.create API and send an Object. The sent ...
1
vote
1answer
130 views

chrome extensions: extension.sendRequest (message passing) to same page?

is it possible to send a request using message passing api to the same page that will be listening to it? it dosen't seem to work! One solution is to setup a listener on some other page and then ...
1
vote
0answers
35 views

Appending document in response function

Not sure why, but I'm getting an unexpected identifier error when trying to append an element to the document in a response function. I've found that doing anything with the document seems to give me ...
1
vote
3answers
309 views

Is message passing in small talk and ObjectiveC same as calling method with value types (structs) in argument?

According to wikipedia the difference between message passing and calling a method is "In message passing, each of the arguments has to have sufficient available extra memory for copying the existing ...
1
vote
1answer
101 views

Realworld java app using kilim framework

Is there any realworld app using kilim message-passing framework?
1
vote
2answers
424 views

How should a chrome extension background page communicate with multiple content scripts?

I'm having trouble communicating with multiple content scripts from my background page. My background page has code like: chrome.tabs.sendRequest(tabId, { targetScript:"content1" }, function (resp) { ...
1
vote
3answers
1k views

PHP/Javascript passing message to another page

I basically want so when you post a comment, (i use a js/jquery script to send string to insert.php which inserts to the database) you will receive 2+ points. Now i have done so you get +2 points, BUT ...

1 2