Archived

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

about IceStorm

in IceStorm,can a consumer retrieve a new topic registered by another dynamically? (maybe it like a event,and it is asynchronous.)

I want to get all event by a consumer registered all topic.

Comments

  • matthew
    matthew NL, Canada
    freshman wrote:
    in IceStorm,can a consumer retrieve a new topic registered by another dynamically? (maybe it like a event,and it is asynchronous.)

    I want to get all event by a consumer registered all topic.

    You want all consumers to register with a new topic as soon as it becomes available? There is no built in way to do this. But you could do it easily enough yourself by creating an topic that is used to announce the creation of new topics. All consumers would then subscribe to this topic and then in turn subscribe to any topics that are announced.

    Regards, Matthew