Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
MC streams can be switched on/off by sending an RTR message.
It must contain either streamTitle (to select streams by their Msg Stream Titles), or streamId (to select streams by their Msg Stream IDs) parameter and streamOperation parameter applying specific status to selected streams (valid values are enable/disable).
Based on incoming parameters the following SQL is constructed and executed:
UPDATE msgcenter_dbo.msg_streams MS
SET MS.STREAM_STATUS =
--'S' in case streamOperation – disable
--Null in case streamOperation – enable
WHERE
--MSG_STREAM_TITLE in case streamTitle is set in the incoming message
--MSG_STREAM_ID in case streamId is set in the incoming message
in
--(List of values generated based on streamTitle/streamId)
This logic is wrapped in eagle_mc_server_support_setup_stream.xml that is part of eagle_mc_server_support_import_stream.rsf.