Publish/subscribe is a messaging pattern where senders (publishers) of messages do not program the messages to be sent directly to specific receivers (subscribers). Rather, published messages are characterized into channels, without knowledge of what, if any, subscribers there may be. Subscribers ...
0
votes
0answers
14 views
PubSub Design Pattern with publisher controlling who can subscribe
My problem is that i need to make a pub-sub mechanism that will give the publisher the option to prevent some subscribers from getting any messages. This option should be managed by the publisher so ...
3
votes
1answer
42 views
Redis: how (or should) I delete pubsub channels
In my app I dynamically create new pubsub channels and there might be too many like 5k per day. According to my app's requirements any channel is used for at most 5minutes.
Considering this ...
0
votes
0answers
9 views
Is pubsubz.js an asynchronous publish-subscribe? [closed]
As far as i can see from the code https://github.com/addyosmani/pubsubz/blob/master/pubsubz.js there is a set timeout of 0 which is forcing me to think that the implementation is correct but still not ...
-1
votes
0answers
15 views
Best way to send heavy and complex JSON data
I am working on a project where I am dealing with heavy and complex
JSON data. It is a PubSub model.
Scenario is :
Server continuously transmits JSON data to the Client. Client is a monitoring tool ...
-3
votes
0answers
13 views
pub/sub benchmarking tool guidance [closed]
I needed some direction on how to generate a benchmarking tool for pub/sub engines. How would I go on generating the workload? Thanks.
P.S: I am new to the concept of pub/sub so any good reference ...
0
votes
1answer
25 views
python django implementing subscribers
I have a very simple web application. A student comes in and he creates a note in one of the subjects. Each subject has number of subscribers. Similar to stackoverflow tags, once a tag has been added ...
-1
votes
0answers
17 views
Publisher Subscriber model emails using c#
I have to create a tool with the following specifications ?
1)A portal where users can go and subscribe
2)Subscription is for few reports
3)Here reports are not fixed , they are generated as per ...
0
votes
2answers
118 views
Camel Redis Component subscribe to a channel not working
I've a simple route that listens to a Redis channel. For some reason it's not working.
Here is my route. I verified that data is being published into the Redis channel and I can read it back using a ...
2
votes
1answer
49 views
Best approach for multiple envelopes in ZeroMQ pub/sub pattern?
I'm trying to design a pub/sub architecture with ZeroMQ, and I want to make maximum use of ZMQ's internal filtering for subscribers.
What is the best way to handle multiple message envelopes in ZMQ ...
0
votes
2answers
48 views
Meteor.js, extend an object when publishing it
I have messages collection.
Each message has an userId.
I also defined displayUsername() function, that gets the id of user, and returns fullName.
My question is can I extend it with underscorejs on ...
0
votes
1answer
32 views
How to Provide a Callback SOAP Method Contract in a WCF Service?
I have a WCF service which routes certain requests into a central processing application. The WCF service uses basic HTTP/S bindings; this is for compatibility with a variety of client technologies ...
0
votes
1answer
82 views
Messaging in a micro-service architecture
I'm beginning to investigate service-oriented architectures and wonder how best to structure the messaging between processes. It seems that direct HTTP calls between services and/or a pubsub bus are ...
1
vote
1answer
54 views
Ruby on Rails — Faye Framework — private_pub
I'm using private_pub to implement a one-to-one chat-like application.
Here is my story: as a user, I would like to receive a message when my partner leaves the chat – closes the window, etc.
...
1
vote
2answers
44 views
Data obtaining check PUB/SUB pattern
There is a server, that collects some data and then sends it to the client. I need to be sure that the client got the data sent by server. I thought PUB/SUB pattern here would be best choice, but I ...
0
votes
1answer
25 views
Maintain PUB/SUB communication
What is the best practise to maintain complex structure using Pub/Sub to communicate between modules?
I finished up my last project with a lot of module that are nicely decoupled (maybe even ...
0
votes
1answer
94 views
Jabber client issue with Authentication c#
Given below is a sample console application uses jabber-net client for sending a sample test message after authenticating the connection.
I am receiving error while authenticating the login ...
0
votes
1answer
27 views
How to unit-test custom AJAX events
I have a javascript application where users can search for locations that are then displayed on a map. The search for locations is done with AJAX calls to a server application. There is one component ...
0
votes
3answers
123 views
How can I setup an Autobahn Pub/Sub Server and a Autobahn Webserver listening on the same port
I recently discovered autobahn python and js as a comfortable method to establish a pub/sub server and corresponding client even with rpc-calls.
After looking through the tutorials, I set up a test ...
-2
votes
0answers
30 views
A simple queue container and listener
I want to implement a simple Java queue container (Singleton) that will contain few queues (like LinkedBlockingQueue) and its listener (only one) (kind of subscriber). Wherever a message is added to ...
1
vote
1answer
60 views
zeromq, C++, is it necessary to set a high water mark for subscribers?
I did a quick test of the ZeroMQ PUB/SUB and now have some working code. However, I am a bit confused about the concept of high water mark as applied in zeromq.
I have set a HWM in my publisher code ...
0
votes
0answers
27 views
Windows Azure messages to conected clients
I have to develop application which works with windows azure. Our requirement is clients(Windows service or console application) can connected to server(kind of subscribe) then waiting. server push ...
1
vote
1answer
22 views
zeromq individual subscriber queues
I have a question about zeromq pub/sub. Does the publisher create a separate queue for each individual subscriber or is it one queue for all subscribers (and hence limited by the slowest subscriber)?
0
votes
0answers
69 views
how to call a model from rabbitmq php consumer's callback in codeigniter?
I developed an android app where it subscribes to a queue and also publishes to other queues. At a time it publishes the same message to two different queues, one of them is a queue named "Queue" and ...
0
votes
1answer
56 views
Hierarchical Pub/Sub in Redis and Faye and Push notifications
I've been playing around with Redis and Faye for a system I'm building. I'm still not sure if they are the best choice for my specific application.
My goal
Each user is able to publish a message to ...
0
votes
0answers
27 views
apply / trigger not passing correct parameters
I've run into a strange problem with my jQuery code. I have a setup as follows:
(function($) {
var o = $({});
$.subscribe = function() { o.on.apply(o, arguments); };
$.publish = ...
0
votes
1answer
66 views
Consuming rabbitmq queue and inserting messages in Mysql on cloud?
I developed an android app where it subscribes to a queue and also publishes to other queues. At a time it publishes the same message to two different queues, one of them is a queue named "Queue" and ...
0
votes
1answer
73 views
How to run method on client when subscribe is complete
Here is my setup:
//in global.js file
items = new Meteor.Collection("items");
//on server in main.coffee
Meteor.publish "nearItems", (lat, lng) ->
return items.find( { loc : { $near : [lng, ...
0
votes
1answer
41 views
ZMQ pub apparently not working with XAMPP on windows and php
This question is so specific I'm afraid nobody will be able to help me... I've switched from developing on a mac to a pc, and have all of my project working on the local machine (using XAMPP) apart ...
1
vote
0answers
50 views
WCF PUB - SUB Pattern Config File Usage
Overview of Project:
I have A WCF service and 2 Desktop Applications (One Publisher, Second Subscriber).
The WCF service is hosted on Windows server 2008 R2 Std Edition, and the Publisher is on ...
0
votes
2answers
88 views
Decoupling backbone with pub/sub
I'm in the process of revamping the way I use backbone/require, I found out the hard way on how bad of a practice it is to have modules coupled (I didn't understand decoupling at the time).
I started ...
1
vote
1answer
27 views
NoSQL with Pubsub
I'm currently looking at an architecture where I need to utilize a pub-sub system and a NoSQL data-store and instead of using two different products I'm wondering if there are any good products that ...
0
votes
0answers
48 views
em-websocket with private channels
I need to create a web-socket server, I am planning to use em-websocket. I need to support private channels, that is I should be able to send message to one particular channel or subscriber.
There ...
0
votes
0answers
28 views
How to have TcpListener subscribe to messages from TcpClient publisher
I am trying to support the following workflow:
Many subscribers register with publisher Server to be notified of certain events
Publisher Server notifies many subscriber clients that an event ...
1
vote
0answers
67 views
How to implement Full Text Search in Meteor/Telescope
I have attempted implementing search in Telescope using pure javascript, since it looks like FTS is a while off for Meteor to implement and I couldn't get 2.4 playing nicely with Meteor yet.
I'm ...
0
votes
2answers
84 views
Redis node.js - chaining calls to get user data
I have a database of users: profiles, products, configurations, and other things that a user could own. I'm trying to figure out a way to successfully chain my redis calls (a "getAll" function) so ...
0
votes
2answers
76 views
Redis pub/ sub vs node event emitter
I'm not sure I understand the difference really between using redis pub/ sub and using node/ express' event emitter. Does the pub/sub interact with my database in any way? In what cases would I use ...
0
votes
1answer
83 views
Publish-Subscribe in spring? [closed]
Can any one tell me how to use the Publish-Subscribe pattern in Spring? Does Spring have any built-in functionality to implement this?
In Java we can do like this: ...
0
votes
1answer
266 views
AngularJS Broadcast not working on first controller load
In this PlunkerDemo, I'm trying to broadcast an event from the parent controller to child controller. However doing it directly in the parent controller won't work. The handler doesn't register the ...
0
votes
1answer
64 views
what does ejabberd store and not store when using external authentication? [closed]
When you setup Ejabberd to use an external authentication script does Ejabberd still store the data that pertains to each user? Like roster, pub-sub subscriptions.....
0
votes
2answers
48 views
“Local” publish-subscriber pattern for use in MVC wxpython
Using wxpython in MVC, I looked for a way to let the models tell the controllers about changes. I found (py)pubsub, which implements a global notification mechanism: Messages are sent to one place ...
2
votes
0answers
174 views
Pubsub with Node.js and Socket.io for individual users
I want to check that i've got my knowledge the right way round with using pubsub to gather notifications for a specific user in a Node.js/socket.io environment.
Here's my setup:
Main application is ...
0
votes
0answers
92 views
Clrzmq 3.0 pub sub does not work as expected
I tried a basic pub sub model in clrzmq3.0 program which tries to publish 512 B of data to the subscriber. The similar program when tried on older versions managed to sent large amount of data but in ...
4
votes
3answers
199 views
Difference between Observer, Pub/Sub, and Data Binding
What is the difference between the Observer Pattern, Publish/Subscribe, and data binding?
I searched around a bit on SO and did not find any good answers.
What I have come to believe is that data ...
-1
votes
1answer
73 views
ZeroMQ pub-sub categories : are wild cards possible
I have been reading through the zero mq documentation and I was wondering if there is a way to subscribe using wild cards? I need a system where you can publish on something like A.B.C and then ...
0
votes
1answer
39 views
A data buffer to subscribe and unsubcribe with real-time data using rabbitmq
Basically I want to create a data buffer that a client could occasionally subscribe to, get all data from the last while, keep listening on it for real-time data, then unsubscribe after some time, and ...
0
votes
0answers
50 views
Is there any guarantee that every message is pushed to client and delivered in the original order ?
i'm using rabbitmq to push instant messages to android devices. In the process some messages are being delivered and most of them are not delivered. the undelivered messages are noted as ...
0
votes
0answers
68 views
How to implement publish/subscribe in Linux without manually bookkeeping the subscriptions list and without userspace helpers like D-Bus?
I want something like multicast AF_UNIX datagram sockets (something similarly low-level).
Is there something already implemented in Linux kernel for this? I want it to keep the publish/subscribe ...
0
votes
2answers
41 views
Pub/Sub How to notify users logged in a subscriber application?
I know the pattern pub/sub in theory and now I would like to implement it in practice.
I have a web application (subscriber) that contains a service that is listening for a channel called "news". ...
1
vote
0answers
68 views
Custom Events across multiple jQuery instances
Let's assume the following situation:
the page (http://somedomain.com/somepage.html) has jQ 1.9 loaded.
it also loads our script http://ourservice.com/script.js
which in turn loads jQ 1.7 in ...
0
votes
1answer
57 views
Subscribe a channel only if a key exists in Redis
In my nodejs app, I'm using Redis keys as channel names. I want a client to subscribe a channel only if the corresponding key exists. The problem is between a EXISTS command and a SUBSCRIBE command, ...

