Workflow d’exécution parallèle
patterns
Ce workflow modélise plusieurs tâches qui s’exécutent en même temps.
patterns
Ce workflow modélise l’écriture de données et la publication de messages dans une seule transaction.
user { # User
n1: circle label:"Start Transactional Outbox"
n5: rectangle label:"Record Transactional Outbox outcome"
n9: rectangle label:"Monitor Transactional Outbox status"
n13: circle label:"End Transactional Outbox"
n1.handle(bottom) -> app.n2.handle(top)
n1.handle(bottom) -> service.n3.handle(top)
n1.handle(bottom) -> database.n4.handle(top)
n1.handle(right) -> n5.handle(left)
n1.handle(bottom) -> app.n6.handle(top)
n1.handle(bottom) -> service.n7.handle(top)
n1.handle(bottom) -> database.n8.handle(top)
n1.handle(bottom) -> app.n10.handle(top)
n1.handle(bottom) -> service.n11.handle(top)
n1.handle(bottom) -> database.n12.handle(top)
n9.handle(right) -> n13.handle(left)
n5.handle(right) -> n13.handle(top)
n1.handle(right) -> n9.handle(bottom)
}
app { # App
n2: rectangle label:"Receive Transactional Outbox event"
n6: rectangle label:"Monitor Transactional Outbox status"
n10: rectangle label:"Monitor Transactional Outbox status"
n10.handle(right) -> user.n13.handle(bottom)
n6.handle(right) -> user.n13.handle(bottom)
n2.handle(right) -> user.n13.handle(bottom)
}
service { # Service
n3: rectangle label:"Validate Transactional Outbox conditions"
n7: rectangle label:"Monitor Transactional Outbox status"
n11: rectangle label:"Monitor Transactional Outbox status"
n11.handle(right) -> user.n13.handle(bottom)
n7.handle(right) -> user.n13.handle(bottom)
n3.handle(right) -> user.n13.handle(bottom)
}
database { # Database
n4: diamond label:"Execute Transactional Outbox action"
n8: rectangle label:"Monitor Transactional Outbox status"
n12: diamond label:"Monitor Transactional Outbox status"
n12.handle(right) -> user.n13.handle(bottom)
n8.handle(right) -> user.n13.handle(bottom)
n4.handle(right) -> user.n13.handle(bottom)
}
patterns
Ce workflow modélise plusieurs tâches qui s’exécutent en même temps.
patterns
Ce workflow modélise le suivi des changements d’état d’un objet dans le temps.
patterns
Ce workflow modélise la vérification de la validité des données entrantes.
patterns
Ce flux de travail modélise la comparaison de deux versions pour voir laquelle donne les meilleures performances.
patterns
Ce workflow modélise la journalisation de toutes les actions importantes à des fins de conformité.
patterns
Ce workflow modélise la vérification des permissions utilisateur avant l’exécution des actions.