Versions Compared

Key

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

...

Le service est synchrone.

Il est sans état.

...

Séquence représentative de la médiation

Plantuml
actor Client


Client -> Médiation : une opération
activate Médiation
group Enrichissement
	boundary "Service d'enrichissement"
	Médiation -> "Service d'enrichissement"
end

Médiation -> Médiation : routage
loop n services à composer
	boundary "Service Final"
	Médiation -> "Service Final" : opération
	activate "Service Final"
	"Service Final" --> Médiation
	deactivate "Service Final"
end


Médiation -> Médiation : composition

Médiation --> Client : résultat
deactivate Médiation

...