Skip to content

Commit d1e0ba1

Browse files
committed
chore(EAV-737): update onRundownActivate and onRundownDeactivate comments
1 parent a79cd69 commit d1e0ba1

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

packages/blueprints-integration/src/api/showStyle.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,16 @@ export interface ShowStyleBlueprintManifest<TRawConfig = IBlueprintConfig, TProc
199199
// Events
200200

201201
/**
202-
* Called when a RundownPlaylist has been activated
202+
* Called at the final stage of RundownPlaylist activation, before the updated timeline is submitted to the Playout Gateway,
203+
* This is a good place to prepare any external systems for the rundown going live.
203204
*/
204205
onRundownActivate?: (context: IRundownActivationContext) => Promise<void>
205206
/** Called upon the first take in a RundownPlaylist */
206207
onRundownFirstTake?: (context: IPartEventContext) => Promise<void>
207-
/** Called when a RundownPlaylist has been deactivated */
208+
/**
209+
* Called at the final stage of RundownPlaylist deactivation, before the updated timeline is submitted to the Playout Gateway,
210+
* This is a good place to prepare any external systems for the rundown going offline.
211+
*/
208212
onRundownDeActivate?: (context: IRundownActivationContext) => Promise<void>
209213

210214
/** Called before a Take action */

0 commit comments

Comments
 (0)