The message-passing tag has no wiki summary.
0
votes
2answers
13 views
Using intent's putExtra to send data using same Key Value
i want to open an Activity using Intents By following this code:
Intent i=new Intent("com.example.learn.CONNECTION");
@Override
protected void onCreate(Bundle savedInstanceState) {
.
...
0
votes
3answers
43 views
Can I make a regex match all characters up to ; except \;?
I am going to construct a message-passing system whose messages have the following structure:
message type;message content
(matches message type;)
However, the user can set the message type, and ...
1
vote
1answer
141 views
MIT Scheme Message Passing abstraction Mailman procedure
I previously asked a question concerning message passing Abstraction here: MIT Scheme Message Passing Abstraction
The question asked that I:
Write a mailman object factory (make-mailman) that takes ...
0
votes
0answers
26 views
google chrome extension message passing response function not setting variable in global scope
I'm trying to use message passing to get data and return it, but for some reason when I tell the response function to set a variable in a higher scope, it isn't doing it. here is my code:
function ...
0
votes
0answers
54 views
Chrome Extension: Message Passing
I stuck on message passing in my Google Chrome extension.
I have this popup.js:
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
if (request.do == ...
0
votes
2answers
93 views
Message passing in chrome extension not working
I'm new to chrome extensions and I'm having a bit of trouble getting started.
First of all my overall goal is to be able to click a button in my popup and have something in the DOM change. If I ...
1
vote
1answer
84 views
sending data from DetailViewController to MasterViewController
This is what exactly I'm trying to do.
wizardviewcontroller.m
- (IBAction)onCountryClick:(id)sender {
MJDetailViewController *detailViewController = [[MJDetailViewController alloc] ...
0
votes
1answer
71 views
Deserializing a Message multiple times with Google Protocol Buffers
I am working with a system that is extremely modular. Messages can be determined by the by the 3-tuple of src, dest, type.
I'm looking into reimplementing our messages with Protocol Buffers. I've ...
2
votes
1answer
69 views
Erlang: case..of construct for function call return?
The errors generated by the code are
2> X = "2".
"2"
3> case_:main(X).
main 50
sender 50
** exception error: bad argument
in function case_:sender/1 (case_.erl, line 14)
in call ...
0
votes
0answers
69 views
Ruby/rails message passing over network
I'm working on a project with a javascript front end served by rails that communicates with a separate server that is running the model for the application in Scala with JRuby. The main sticking point ...
0
votes
1answer
122 views
What are the caveats of using MongoDB for message passing?
MongoDB can be used for real-time message passing by using a tailable cursor to tail a capped collection.
What are the caveats of using MongoDB for this purpose? One obvious issue would be that there ...
2
votes
1answer
187 views
Create akka system where all actors have references to each other [closed]
I want to create a program that starts multiple process on multiple machines in a homogenous environment on a cluster computer.
I want to use Akka 2.1 which ships with Scala 2.10.
What would be the ...
0
votes
1answer
84 views
Rendezvous in inter process communication?
I have two processes communicating through a send() and a receive().
If both are blocking, I know this is what is known as extended rendezvous, if the sender is non-blocking then it's called limited ...
0
votes
0answers
75 views
Secret message passing from XUL Overlay to content script in iframe
A previous answer has already talked about the differences between loadsubscript and loadframescript, but it looks like there is one major disadvantage of using loadframescript: iframes do not have ...
1
vote
0answers
55 views
Kill an instace of an application from another instance
I have a QtSingleApplication.
I've started an instance A.
Next I start an instance B.
B uses sendmessage() to send a message to A.
A uses this message ( received with messageReceived() signal )to ...
1
vote
1answer
145 views
Message passing in Chrome Extension
I am quite confused about the what are counted as chrome extension view, which directly linked to what function I can use for passing messages between different components.
Let me just describe what ...
2
votes
3answers
297 views
Web Workers communication using MessageChannel HTML5
I would like to implement communication between webworkers. I read the W3C documentation and I found MessageChannel is one of the ways to do it, but while reading MessageChannel I couldn't understand ...
1
vote
3answers
150 views
Sending message Pid Erlang
I would like to know, how can i send a message to process with erlang.
I did start a process and the output shows me that the pid is <0.39.0>.
My problem is how can i send a message to this process ...
0
votes
1answer
157 views
Message-passing to background.html from popup.js and content-scripts
I'm trying to get the popup/popopen menu to show the user different content based off the current page-URL but can't get a connection. I've read that only background.html has access to current-tabs' ...
0
votes
1answer
644 views
What's the difference between the message passing and shared memory models?
The question duplicates the topic of the question asked here.
I would like to ask for some additional clarification with respect to a different point of view.
in distributed computing, memory ...
0
votes
2answers
141 views
Java Object Oriented function calling between classes
I ma new in OOD and working on Academic project.
I am facing a problem while programming it.
The scenario is that I have a main class in which I have made an object of "login" class and call its ...
3
votes
1answer
109 views
TPL Dataflow, can I query whether a data block is marked complete but has not yet completed?
Given the following:
BufferBlock<int> sourceBlock = new BufferBlock<int>();
TransformBlock<int, int> targetBlock = new TransformBlock<int, int>(element =>
{
...
5
votes
2answers
366 views
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 once an item reached the input buffer of a data block, control is returned ...
1
vote
1answer
217 views
TPL Dataflow, how to forward items to only one specific target block among many linked target blocks?
I am looking for a TPL data flow block solution which can hold more than a single item, which can link to multiple target blocks, but which has the ability to forward an item to only a specific target ...
2
votes
1answer
198 views
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 MPI (specifically using openmpi 6.3). the frame work is supposed to be ...
-4
votes
1answer
302 views
C# & Java & C++ Message Passing Mechanism [closed]
What is C# & Java & C++ Message Passing Mechanism ?
0
votes
2answers
136 views
Erlang console hangs with this codesnippet
This is probably easy for someone with experience in Erlang but I have none.
Im trying to make a fibonacci tree of processes. It shall then accept a message where i can calculate the sum of all nodes ...
0
votes
1answer
88 views
mqd_t, sending and recieving messages
I'm working on a program where I have a one process called server and several processes called client that can connect to the server and send it messages< however for some reason my client won't ...
1
vote
1answer
164 views
implicitly logging messages received by an actor in scala
I am new to this fancy language scala and I am trying to create a library for logging scala actors. My library has a class Logger which extends the Actor class.
So any Scala application which uses ...
0
votes
0answers
109 views
Consumer Producer using message passing (not shared memory)
I am a little confused about message passing between several threads in Java. In many places it's written that currently it's not supported by the standard ways, but there are some libraries like ...
1
vote
0answers
63 views
Message passing solution
I am creating an application involving concurrent actors which communicate through pre-specified FIFO message queues (Essentially a Kahn process network ). Actors do not (MUST not) share memory.
I am ...
1
vote
2answers
227 views
Assign click event to addon icon on navigation bar
We have created a chrome extension for our app. Where we call a METHOD from a "js file" on CLICK event of the "extension icon" placed on the navigation bar. For this we use message passing between the ...
0
votes
1answer
103 views
What are the pros and cons of HTTP callbacks vs. message passing?
We are looking to develop a number of services, but are not sure which "response" mechanism is the best route to go. The two contenders are:
HTTP callbacks, where the service would update the client ...
1
vote
2answers
203 views
Message Passing from Packaged App to Extension
I have seen this article about passing messages between extensions which works when you know the extension ids.
But, what I would really like to do is pass a message from a packaged app to an ...
0
votes
2answers
188 views
Passing messages to children of contained container view controllers from a custom container view controller?
My apologies for the long title, but it really is the shortest accurate and descriptive version I could come up with.
I'm implementing a custom container view controller with a custom segue type, ...
0
votes
0answers
232 views
android handler thread and service
I need to create a thread in the service and now i need to communicate both ways between the two.
I am pretty sure how to communicate between service to thread but how do i go the other way round?
...
2
votes
2answers
144 views
how to solve an equation in scala using actors?
I want to know how an actor returns a value to the sender and how to store it in a variable.
For example, consider that we have to find the sum of squares of 2 numbers and print it.
i.e., sum = a2 + ...
1
vote
0answers
420 views
Passing message from background.js to popup.js
I'm trying to implement my own chrome extension on which, on a certain event, create a browser notification and fills the popup with data calculated in background.js
Here is mymanifest file :
{
...
1
vote
1answer
149 views
Empty Process Mail box in Erlang
when you send a message to the shell process, you can flush all messages out by calling: c:flush().
C:\Windows\System32>erl
Eshell V5.9 (abort with ^G)
1> self() ! josh.
josh
2> self() ! ...
2
votes
0answers
185 views
Chrome Extension Content ->Background message passing
Whats up with this?
content script:
chrome.extension.sendMessage({message: "whats the url"}, function(response) {
alert(response.hereistheurl);
});
background
...
0
votes
1answer
59 views
Why can't I open get 8 processes at a time?
I'm a beginner to MPI. When I coded my first program, I came into a tough problem to me.
MPI_Init(&argc, &argv) ;
MPI_Comm_rank( MPI_COMM_WORLD, &rank) ;
MPI_Comm_size( MPI_COMM_WORLD, ...
0
votes
1answer
142 views
Distributed nature task and Akka
This is a simplified version of my problem:
On the server we have n*m - matrix of type int[][], we split this matrix into the set of n row-vectors and put them in a queue.
When the queue is ready ...
0
votes
2answers
221 views
Java shared-address-space and message-passing parallel programming paradigms
In the shared-address-space model there is a common address space shared between
processes and represented as data structures in memory (like ConcurrentHashMap). This gives the advantage of very fast ...
0
votes
1answer
213 views
Message passing scheme
Can anyone briefly explain to me how message passing is implemented in scheme? I think I am little off on the whole concept of message passing.
1
vote
0answers
134 views
Can MPI oversubscribing crash the system?
I have implemented a sample MPI application with a Producer and a Consumer. The producer runs on a process with rank 0 and the consumer will be running on all the non-zero ranks. The consumer will be ...
1
vote
2answers
73 views
Delegation vs. Message Passing
I have a class, call it A that parses some data out in an NSDictionary. That class has a table view, and when a cell is selected, a new class instantiates, let's call that class B. Class B in turn ...
0
votes
1answer
271 views
Passing Exception Information from Global.asax to ErrorPage.aspx
I have a global error handler in Global.asax and am trying to display the exception information in a page called ErrorPage.aspx. I've read Microsoft's page about passing information between asp.net ...
0
votes
1answer
127 views
kaazing publishBasic pass json data and catch it in node.js
kaazing publishBasic pass json data and catch it in node.js
Below is the code to publish Data to RabbitMQ via kaazing AMQP librarry
var body = new ByteBuffer();
body.putString("new_bidder", ...
4
votes
1answer
277 views
Haskell ZeroMQ binding not working for REQ socket
So here i was, barely able to install the libzmq on a windows desktop and then zeromq-haskell with cabal. I wanted to test the api by binding a python program with a haskell program in a hello-world ...
1
vote
2answers
63 views
Dispatching a task on a new thread, that can communicate with the parent thread
I want to dispatch a task on a new thread, and I want this task to notify the parent thread during its various stages of execution. Something like shown below:
void unzip(Path source, Path ...


