Archived

This forum has been archived. Please start a new discussion on GitHub.

IceStorm problem

could a subscriber unregister from the service?
if could ,then could it register or unregister dynamicly ?

if could ,how to do it? could you show me some codes?

subscriber A and subscriber B, a server;
A's topic is "topic", and B's topic is also "topic",
when A unregister, could B receive the message as before?

Comments

  • benoit
    benoit Rennes, France
    Hi,

    Yes, you can subscribe or unsubscribe from the topic any time. If a subscriber unsubscribes from a topic, other subscribers aren't affected and will continue to receive updates published on the topic. You can take a look at the Ice-2.0.0/demo/IceStorm/clock demo if you want to try this out!

    Benoit.
  • thank you benoit !!
    I will try it.