Top "Message-passing" questions

Message passing is a data transfer mechanism that is used in various forms in a number of programming languages

Parallelism in Python

What are the options for achieving parallelism in Python? I want to perform a bunch of CPU bound calculations over …

python multithreading parallel-processing message-passing
The actor model: Why is Erlang/OTP special? Could you use another language?

I've been looking into learning Erlang/OTP, and as a result, have been reading (okay, skimming) about the actor model. …

c++ concurrency erlang actor message-passing
What does `Fatal Python error: PyThreadState_Get: no current thread` mean?

I am passing an mpi communicator from python to C. I chose to use boost's mpi communicator as mpi4py …

python c++ boost mpi message-passing
what does it mean configuring MPI for shared memory?

I have a bit of research related question. Currently I have finished implementation of structure skeleton frame work based on …

parallel-processing mpi shared-memory openmpi message-passing
TPL Dataflow, whats the functional difference between Post() and SendAsync()?

I am confused about the difference between sending items through Post() or SendAsync(). My understanding is that in all cases …

c# concurrency task-parallel-library message-passing tpl-dataflow
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-agnostic message-passing method-invocation
Chrome Extension API: chrome.tabs.captureVisibleTab on Background Page to Content Script

My overall goal was to take a screenshot via the background page using: http://developer.chrome.com/extensions/tabs.html#…

javascript json google-chrome-extension content-script message-passing
chrome extension to Send Message from popup to content script

I,am developing an extension in which i have to extract data from linkedin profile page when user press button …

javascript google-chrome-extension content-script message-passing
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/???) …

c# oop message-passing