src/session/session_lifecycle.ts
Defines an interface for logic that needs to be executed for Blueriq session events. To be registered in an NgModuleDecorator under the SESSION_LIFECYCLE token as a multi provider.
Methods |
Abstract cleanup | ||||||
cleanup(session: Session)
|
||||||
Called when a Blueriq session is cleaned up, i.e. no longer visible on screen.
Parameters :
Returns :
void
|
Abstract create | ||||||
create(session: Session)
|
||||||
Called during the creation of a Blueriq session.
Parameters :
Returns :
void
|
Abstract update | |||||||||
update(session: Session, changes: PageChangesReport)
|
|||||||||
Called with a report of page model changes upon an update response from the Blueriq Runtime.
Parameters :
Returns :
void
|