Skip to content

Instantly share code, notes, and snippets.

@mosheeshel
Created July 15, 2021 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mosheeshel/05df1cbb31cdac5165f0a12fb36b2a4d to your computer and use it in GitHub Desktop.
Save mosheeshel/05df1cbb31cdac5165f0a12fb36b2a4d to your computer and use it in GitHub Desktop.
Mermaid powered Sequence Diagram

sequenceDiagram autonumber

ToggleSDK->>+ToggleMicroservice: Get Features
ToggleMicroservice-->>-ToggleSDK: Features
ToggleSDK->>LocalToggleStore: Save features to local storage


par getting toggle values
ToggleSDK->>+LocalToggleStore: Get FeatureToggle value
LocalToggleStore-->>-ToggleSDK: toggle value
end

par updates to features
ToggleMicroservice->>+ToggleSDK: Push Updates
and
ToggleSDK->>-LocalToggleStore: Update features values
end     
@mosheeshel
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment