Questions tagged [subscriber]

272 questions
2
votes
2 answers

Is it possible to scope/group event publishers in NServiceBus?

I have: - one subscriber SUB with QUEUE0 - publisher PUB1 with QUEUE1 - publisher PUB2 with QUEUE2 - event MyEvent being published by both publishers When: - SUB explicitly subscribes to PUB1 with queue name QUEUE1…
2
votes
0 answers

How to send data to activities from rxAndroid custom subscriber?

I am developing one application and trying to replace EventBus with RxAndroid hence i created Observable and i have subscribed to my own Subscriber.i am receiving data successfully below is the code- Observable.just(uPnPDevices) …
Godfather
  • 833
  • 9
  • 14
2
votes
1 answer

Subscriber Only Views on YouTube

I've checked the traffic sources on YouTube analytics. However, I do not see the checkbox for the subscriber only views that I've been reading about. Is there any other way I can see the views coming from my subscribers only from YouTube.
2
votes
1 answer

ROS Image subscriber - window popup does not appear

I am following image subscribe tutorial on official ROS page. when I run my_subscriber no window popup appears. I type - rosrun image_transport_tutorial my_subscriber output is - init done opengl support available And then nothing happens. (even…
user12340
  • 663
  • 5
  • 6
2
votes
2 answers

Can a Sql server AlwaysOn group be a transactional replication subscriber?

If I have a Sql server AlwaysOn Availability Group, can I do a transactional push replication to it?
2
votes
1 answer

Can a subscriber also publish/send message in NServiceBus?

Is the communication bi-directional in NServiceBus? a subscriber can also publish/send message?
Benny
  • 8,547
  • 9
  • 60
  • 93
2
votes
2 answers

Joomla Newsletter component

Is there a joomla newsletter component to create and send letters to some joomla group members (group should be selectable)? Please keep in mind that users do not signed up for newsletter subscription. Instead, they agree our general terms which…
2
votes
2 answers

How does a JMS Topic Subscriber in a clustered application server recieve messages?

Suppose I created a JMS Topic (PropertiesTopic) with one subscriber (PropertiesSubscriber). PropertiesSubscriber is running in a load balanced application server cluster as shown in the picture below. alt text…
2
votes
0 answers

RabbitMQ read performance does not grow when we add more subscribers?

We have been experimenting with RabbitMQ. During those experiments we have seen some strange behavior with respect to a worker queue. One of the observations is that the read performance of a queue does not change when we add or remove processes…
Joost Reuzel
  • 308
  • 1
  • 10
2
votes
1 answer

getting error while publishing message to Message Broker's Topic from esb's Proxy

Whenever i try to publish a message from esb to message broker's topic, i get this error [2013-04-19 14:51:45,930] ERROR - AMQConnection Throwable Received but no listener set: org.wso2.andes.client.AMQNoRoute Exception: Error: No Route for message…
Roy
  • 1,231
  • 1
  • 24
  • 61
1
vote
1 answer

ZeroMQ Lost Messages with PHP Subscriber

i'm using zeromq with php bindings to connect to the zmq module in Freeswitch (a VOIP Software Switch). Short: i'm loosing Events. Long: The zmq module in Freeswitch is implemented in c++ as publisher. My PHP Code is as follows:
unficyp
  • 15
  • 5
1
vote
1 answer

Plone 4 Events and Subscribers

I'm needing some help in the following situation: I need to implement a custom event/subscriber in order to be able to get the context of an object in the beginning and in the end of it's edition, because I need to compare the status of some fields…
Lucas Infante
  • 798
  • 6
  • 21
1
vote
1 answer

What subscriber information can be collected by developers when implementing iOS subscriptions?

My app implements the iOS auto-renewing subscription to access premium content. I haven't yet submitted this for approval, because I want to know what subscriber information I'll be able to access once users purchase subscriptions. I need this…
beaudrykock
  • 248
  • 2
  • 17
1
vote
2 answers

Wordpress user dashboard custom left menu example code help needed

I need help to show the left menu item on other role users dashboard. I am using the code at plugin to add the custom admin menu items . add_action('admin_menu', 'wp_hotlel_admin_menu'); function wp_hotlel_admin_menu() { add_menu_page('Page…
Arpan
  • 33
  • 5
1
vote
0 answers

NestJS Typeorm Subscriber afterUpdate event not returning updated columns

I have a Typeorm subscriber which listens to all entity actions. For afterUpdate, the event has these properties. export interface UpdateEvent { /** * Connection used in the event. */ connection: DataSource; /** *…