pubsub

How does pubsub work in opensocial?

I'm trying to design an app based on the opensocial API and I'm uncertain of how the pubsub apparatus will work. This appears to be analogous to a unix pipe, or perhaps an rss feed. Is a channel persistent across browsers / computers? That is, can I subscribe to channel "x" on browser A and publish to "x" on browser B, and have this d...

Python's PubSub/observer Pattern for C++?

Hi, i'm looking for a C++ replacement of the Python PubSub Library in which i don't have to connect a signal with a slot or so, but instead can register for a special Kind of messages, without knowing the object which can send it. ...

Should I support Co-/Contravariance for Pub-/Sub-Scenarios in C#3.0?

In my application I am creating a simple event hub that offers something for registering subscribers: Subscribes<EventType>(ISubscriber<EventType> subscriber) // and some other methods for adding subscribers And for publishing events. Publish<EventType>(EventType @event) Quite simple. I want to route Publish<int>(0) to all subscri...

Communication Mechanisms that are both Decoupled and Low-Latency

Does anyone have experience with message transports that are both decoupled(senders and receivers don't know/care about each other) and low-latency for distributed and possibly remote interaction events? Do they exist? I'm researching/developing interaction technologies for tangible interaction devices(i.e physical buttons, knobs, slide...

Best Publish/Subscribe "Middleware"

I'm in the market for a good open source network based Pub/Sub (observer pattern) library. I haven't found any I like: JMS - tied to Java, treats message contents as dumb binary blobs NDDS - $$, use of IDL CORBA/ICE - Pub/Sub is built on-top of RPC, CORBA API is non-intuitive JBOSS/ESB - not too familiar with It would be nice if su...

Subscribing to a message from multiple publisher in nServiceBus

I wonder if it’s possible using nServiceBus to subscribe to all Messages of a Type without specifying the publisher’s end point. The Background for this, is a distributed algorithm, that uses the distributor infra structure of nServiceBus to delegate sub problems to distributed workers on the network. After a task is finished, the ...

Plugin for declaratively specifying an API in Rails like django-piston

Is there a gem/plugin for defining an API in Rails? I know you can have "RESTful routes" and render to different formats in controller actions, but I'm looking for a more all-around solution, including but not limited to the following: I would like to declare which models to expose (arbitrary resources could also be declared, but conve...

Using PubSub Framework in iPhone Apps

Is it posssible to use the Publication Subscription (PubSub) Cocoa framework in iPhone apps? I understand that the subscription features would not be available, but is it possible to use the feed-parsing features? (These would be very handy, since they handle multiple versions of RSS and malformed feeds.) ...

PubSubHubbub for a blog in Ruby (Merb)

I am writing my own blog (every one should, it's good experience). I have implemented Atom and RSS feeds, and they are used by a number of readers. Most of those readers are using Google Reader, who at the moment polls my site regularly for updates. I would like to setup a publish Subscribe (PubSubHubbub) option as documented here, an...

Realtime with PubSubHubBub

Hi All I'm trying to implement real time chat engine with PubSubHubBub as the core in Rails. My question is what I need to do to or read to achieve this task ? Where I'm gonna start ? What knowledge do I need to know first because I'm really really newbie in this field and like to play with it... or are they any realtime chat engine tha...

comet vs pubsub..?

may i know what is the different between these 2 approach ? can explain in lay man terms? ...

Pubsub implementation with jaxl library

Hi, I am using jaxl library for bot development on my debian server with openfire. Now i want to apply pubsub functionality to it. My scenario is : user subscribes to an event & when an event occurs message is sent to all the subscribers. I am confused how to implement pubsub through im. Please help Thanks ...

what in your opinion would be best way to get all the retweets from twitter

working PHP probably on amazon ec2... can anyone explain what would be the best way to get all the retweets that contains http links from twitter using either twitter api or some kind of a third party parser (pubsubhub,xmpp, etc)? my application needs the widest aas possible perspective on that data meaning every retweet counts! in order...

What are some techniques to push changes from tokyo cabinet in a multi-service setup?

Let's say I have N > 1 TCP-based, connection-oriented (read: not a website) services handling connections from end users in some load-balanced/sharing configuration. These users do things that cause updates to one or more keys in the centralized Tokyo Tyrant datastore. What do you recommend to push these changes to interested users c...

Cofiguring an endpoint to act both as worker and subscriber

Is it possible to configure an endpoint to act as a worker retrieving jobs from a distributor AND subscribe to some kind of messages? I have the following scenario ( adapted to sale terminology) *) a central department publishes every now and then a list of the new prices. All workers have to be notified. That means, a worker should s...

Pubsubhubbub handle in php

Hi I need to watch a certain feed for my web app and i can't find any proper documentation about this topic -Edited: what i'm actually after is probably so simple that it might be embarrassing :) i know the hub will use a POST request to deliver the updates but i don't know how to fetch that data using $_POST because i don't know the k...

How to create a page which gets real time updates from PubSubHubub

I want to know if it is possible to use javascript/html or php, etc... to create a page that receives continuous updates from a feed that uses PubSubHubub? How can I do this? I am new to this, and any tips would be helpful. ...

What technologies are available for a publish/subscribe model using .NET?

I'm currently working on an application where one component of the application needs to interact with multiple other system components based on certain events. These events occur based on many different triggers... some events are caused by a user's action where other users need to be notified, some events are time-based, and other even...

OpenDDS and notification of publisher presence

Problem: How can I get liveliness notifications of booth publisher connect and disconnect? Background: I'm working with a OpenDDS implementation where I have a publisher and a subscriber of a data type (dt), using the same topic, located on separate computers. The reader on the subscriber side has overridden implementations of on_data_...

Openfire pubsub#collection (multiple parents implemented?)

I've been checking out OpenFire recently and am now trying to ascertain whether I can make a pubsub node with multiple collection nodes as parents. It would be very handy for the architecture I have in mind. Unfortunately, while the XEPs make it very clear this should be possible for an appropriate hierarchy of nodes, I can't tell whic...