Tagged Questions
The consumer tag has no wiki summary.
13
votes
6answers
14k views
Library for OAuth Provider (Java)
I'm looking for a Java library that helps me building an OAuth Provider. I must be able to receive OAuth signed requests and determine whether they are valid or not (checking the signature, timestamp ...
5
votes
3answers
540 views
Producer/consumer system using database (MySql), is this feasible?
I need to use something to coordinate my system with several consumers/producers each running on different machines with different operating systems. I have been researching on using MySql to do this, ...
4
votes
2answers
128 views
Best way to implement a multiple producer/consumer pattern in Java 6
So I have multiple steps stage 1 -> stage 2 -> stage 3 -> stage4 so in some cases the producer would be a consumer, and at each stage there are multiple producers/consumers to make use of multiple ...
2
votes
1answer
45 views
.NET Consumer/Producer (Queue)
I'm new at .NET/Threads and I'd like to know if anyone can help me on this exercise. I need to replace the comments in order to make it work without locking the threads:
private Queue<int> ...
2
votes
1answer
53 views
Way to break a connection from rabbitmq
I've got an application which has some bugs. For some reason 2 consumers are created when only one should be there - and one of them is not checked for messages anymore.
I can detect that situation ...
2
votes
1answer
172 views
Producer/consumer pattern in Java
I'm thinking how to implement the producer/consumer pattern in Java.
Assume that I have 3 threads and a List containing tasks (say it's about 5 tasks). Each thread grab the task from the list and ...
2
votes
1answer
346 views
How does Android/DalvikVM process Handlers?
I'm wondering how Handlers are processed in Android/DalvikVM. I'm writing an application for Android, and in one class I have a Handler method which receives messages from another class. Will the ...
2
votes
2answers
212 views
My Produce Consumer Hangs
Please copy the program below and try running in your IDE. It's a simple Produce Consumer implementation - it runs fine when I use one Producer and one Consumer thread but fails when using 2 each. ...
1
vote
3answers
70 views
multi-threaded consumer,producer C code, not performing?
I'm trying to do a simple multi-threaded consumer/producer, where multiple reader and writer thread, read from a file to the buffer and then from buffer back into a file. It should be thread safe. ...
1
vote
3answers
114 views
Why an Facebook/Twiter app has to need 2 key?
I'm developing an mobile app on iPhone.
After creating an app on Facebook/Twitter, I received 2 keys:
- Facebook call them as app ID and app Secret
- Twitter call them as consumer Key and consumer ...
1
vote
2answers
60 views
consumer producer c# implementation with 1 timed consumer for a bulk sending algorithm
I need to implement a module that can have multiple inputs to a dictionary (multiple threads writing to a dictionary) and 1 timed consumer that takes this dictionary, sends it away using some ISender ...
1
vote
2answers
299 views
Multiple Producer Multiple Consumer lock-free (or even wait-free) queue
I'm searching for documentation on how to write MP/MC queue to be lock-free or even wait-free. I'm using .Net 4.0. Found a lot of C++ code, but I'm not very familiar with memory models, so there is a ...
1
vote
1answer
355 views
WCF MSMQ consumer thread count
What's the best way to configure the maximum number of threads that can pull messages from an MSMQ queue, using a netMsmqBinding in WCF?
For example, say I have an MSMQ service for which I only want ...
1
vote
2answers
132 views
On MacOSX, in C++, how to do interprocess communication over shared memory without spin lock?
I have two processes:
Producer
and
Consumer
they have a commonly mmaped shared region of memory
Memory
Now, Producer writes stuff to Memory. Consumer reads stuff from Memory.
I would prefer ...
1
vote
2answers
861 views
ActiveMQ publisher and subscriber in multiple languanges(C++ Java)
I want to use ActiveMQ as a message broker communicating between a C++ component and a Java component in two process. Eg. C++ component is the publisher and the Java component is the subscriber(there ...
0
votes
1answer
21 views
Signalling a producer task from a consumer task when working with a BlockingCollection
I have a pretty basic application that uses a Producer task and a Consumer task to work with files. It is based off the example here http://msdn.microsoft.com/en-us/library/dd267312.aspx
The basics ...
0
votes
1answer
31 views
Producer / Consumer with Bounded Buffer, multiple producers/consumers with Semaphores
I'm a bit stuck on the multiple consumer/producer problem. It appears in my lecture notes, but I simply cannot understand why the single consumer/producer approach won't work.
The typical approach ...
0
votes
0answers
32 views
Produce Consumer pattern using Monitor or Semaphore
I'm reading Stephen Toub's Patterns of Parallel Programming.
On page 53 he describes some Producer/Consumer patterns
One below using semaphores
class BlockingQueue<T>
{
private ...
0
votes
0answers
48 views
Follow redirect response when using RemoteObjects and Consumers in flex
I have a java backend (BlazeDS+POJOs) and flex 3 client. The client makes RPC calls to backend through RemoteObject, and also receives messages from backend through consumers.
In some deployments, ...
0
votes
1answer
51 views
Consumer-producer model with OpenMP
I am trying to implement a single-producer-multiple-consumer model using OpenMP (I know that I could as well go for boost threads which might be better suited).
Here is my code, which is fairly ...
0
votes
0answers
155 views
Custom web part as consumer and provider for other single web part
I have a task to create a custom filter web part (CFWP) for standard List View web part (LVWP).
I decided to use a connection framework for this task and designed next concept:
LVWP is a provider ...
0
votes
1answer
29 views
OAuth consumer token = publick key?
in Oauth lingo, is the consumer token really just the public key and consumer secret the private key? I can just use JCE to generate them, correct ? thx
0
votes
0answers
80 views
Producer/consumer with circular buffer
could please someone tell me what I am doing wrong here? It doesnt execute get_buffer at all.
void put_buffer(variables *vars) {
buffer_item item;
item = rand();
while( (in + 1) ...
0
votes
1answer
300 views
Producer/consumer with bounded buffer
Could someone check my code and tell me if I am on the right track.. It seems like I am a bit lost.. if you see my errors, please let me know them..
What I am trying to do is to solve bounded buffer ...
0
votes
1answer
50 views
Client OAuth implementation on devices with no permanent storage
I'm implementing an OAuth consumer, which will run on various set-top-boxes. Some of them don't provide any means of storing user data permanently. When the STB is switched off, all data is lost ...
0
votes
1answer
27 views
Doesn't openid make things more difficult? [closed]
I was thinking about using openid for my international site. So I was reading about providers and openid and perhaps I just don't get it. I see what they claim are the benefits, but when I see it in ...
0
votes
1answer
28 views
How do I close a loading screen right when the other thread is finished in Python using Tk?
I have a Python GUI that uses Tkinter. I have to SSH into another place to get data. I start a new thread to do this so that the GUI doesn't hang. During this time, I want to pop up a screen that lets ...
0
votes
1answer
69 views
Event-driven thread creation
I have been trying all kinds of solution to the following problem; to no avail.
I have a large number of (python) modules/scripts and a distinguished script, K.py .
When K.py is executed, it ...
0
votes
1answer
169 views
Invalid signature error when trying to generate request token in Pyramid oauth provider
I'm trying to generate a request token using oauth2 in a Pyramid application for controlling access to an API I'm developing. I'm stuck trying to verify my consumer key and secret working from this ...
0
votes
0answers
138 views
Problem with recieving ActiveMQ messages in JBoss (low message per second count)
I'm using a remote ActiveMQ server and Message driven Beans (4 different beans) to consume the messages.
In theory the message consumption should be fast (and was fast in the past). Currently the ...
0
votes
1answer
241 views
MessageConsumer's selector issue on ActiveMQ
Could someone please confirm if I'm right or wrong on this. It seems to me that "selector" operation is done within MessageConsumer implementation. (i.e. ALL messages are still dispatched from ...
0
votes
1answer
45 views
Tracking statuses of instances of objects on different threads?
I am writing an image board scraper in my free time to teach me mostly about threading. Currently I am using a producer/consumer type pattern to facilitate this effort. However, I am running into a ...
0
votes
1answer
318 views
How to force ActiveMQ connection to choose a broker for a new consumer randomly?
I use the following url to create ActiveMQConnactionFactory:
failover:(tcp://server1:port,tcp://server2:port,tcp://server2:port)
What I want to do is to create multiple message consumers from this ...
0
votes
2answers
2k views
Fast and Best Producer/consumer queue technique BlockingCollection vs concurrent Queue
Im using Generic.Queue in C# 3.0 and Monitor.Enter,wait,exit for wait before consuming the queue (wait for the element to be enqueued). Now im moving to C# 4.
Can anyone suggest me which one is fast ...
0
votes
0answers
378 views
Tibco EMS message consumer threading with c#
I am able to successfully publish and consume messages with Tibco EMS server using C# and Tibco provided DLL for EMS. I am not sure whether the consumer or the listener created for asynchronous ...
0
votes
3answers
413 views
ActiveMQ single consumer multiple producers
can anybody point out a reference on how to implement
a single consumer multiple producer in activemq
Or could give a very simple implementation
this will be very helpful.
tnx
0
votes
2answers
152 views
Unknown error in Producer/Consumer program, believe it to be an infinite loop
I am writing a program that is solving the producer/consumer problem, specifically the bounded-buffer version(i believe they mean the same thing). The producer will be generating x number of random ...