Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    SmartClient10 Messaging module

    Hi,

    We are planning to upgrade from SmartClient8 (Power Edition) to SmartClient10 (Power Edition). However, it's noticed that the below code no longer valid in SmartClient 10.
    Code:
    ISCMessageDispatcher.instance().getSubscribersForChannel("channelname")
    The getSubscribersForChannel method has been removed. What is the replacement of this method? I found there is very limited documentation about the messaging module.

    #2
    The documentation for the Messaging classes is here.

    The method you were calling has never been and is not now a documented or supported API, and that's by design - relying on that API when testing a single-JVM setup would break your code in a production, JMS-based deployment.

    However if you only ever plan on single-JVM deployment, and you are OK with relying on an unsupported API, the same method still exists under the name getSubscribersOfChannel().

    Comment

    Working...
    X