Skip to content

Commit b06d11b

Browse files
author
Rajesh Jinaga
committed
Add more info to simpleflow diagram
1 parent 866ab1c commit b06d11b

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

HowSimpleflowWorks.puml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,24 @@ skinparam component {
1515
ArrowFontName Impact
1616
ArrowColor #1d3ddb
1717
}
18-
: Input (Script, Argument);
19-
: Determine cache key of the given script: \n Get cache key based on hash of the script \n or with the user supplied cache id;
18+
: Input (Script, Argument)/
19+
: Determine cache key of the given script: \n Determine cache key based on hash value of the script \n or with the user supplied cache id;
2020

21-
if (if the function is\n avilable in cache?) then (yes)
22-
:Get function from cache;
21+
if (Is the function \navilable in cache?) then (yes)
22+
:Get the function from cache;
2323
else (no)
24-
partition Compile {
24+
partition " Compile \n& Cache" {
2525
: Parse;
2626
: Generate IL code;
27+
note right: Uses\nFunction\nRegister
28+
2729
: Compile as a function\n with an input parameter;
28-
: Store in cache;
29-
}
30+
: Store generated function in cache;
31+
}
3032
endif
31-
:Execute function (with given argument);
32-
:Output;
33+
34+
35+
:Execute the function (with given argument);
36+
:Output/
3337

3438
@enduml

0 commit comments

Comments
 (0)