Versions Compared

Key

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

...

Any ruleset wishing to create the subscription signals the CloudOS to do so by raising the system:subscribe subscribe event. This is most often done in a rule postlude as shown in the following example:

 

Code Block
themeConfluence
languagejavascript
fired {
  raise cloudos event subscribe
    with channelName   = "Coworkers Bob+Ted"
    and  namespace     = "MyFriends"
    and  relationship  = "friend-friend"
    and  targetChannel = "3f15b820-fa7f-012f-4c6e-00163ebccdcd"
    and  _api = "sky";
}

 

...

To approve the subscription request a ruleset in the the target cloud raises the cloudos:subscriptionRequestApproved event to signal the CloudOS service that the subscription is approved:

...

Domaincloudos
Type
subscriptionRequestApproved
Attributes
eventChannel

For example, the following postlude would raise the cloudos:subscriptionRequestApproved event:

...