Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Domaincloudos
Type
subscriptionRemoved
Attributes
eventChannel, backChannel, namespace, relationship, channelName, approveAttrs

Note: The approvalAttrs attribute is encoded, you will want to decode() it prior to use.

The following rule is selected when theĀ cloudos:CloudOS_subscriptionRemoved event is raised:

Code Block
themeConfluence
languagejavascript
rule receive_subscriptionRemoved {
  select when cloudos subscriptionRemoved
    namespace re/MyFriends/
    channelName re/Coworkers Bob+Ted/
    relationship re/friend-friend/
  pre {
    approveAttrs = event:attr("approveAttrs");
  }
  ...
}

Unsubscribe Event Flow

...