I am trying to write the following flow:
The activity I describe consists in two binaries. The first one takes in input one file, and generates several (let's say two). These two files, plus another one from the environment, are fed to a second binary, which will generate an output file.
I would like to use plantuml to describe this, but the documentation doesn't really help - it doesn't go to the inputs/outputs of activities.
I can draw files with file myFile
, but I didn't manage to link them to boxes. Should I rather use a usecase diagram or an activity diagram for this? Can someone show me how to draw an arrow from a file
to a (binary)
?
I am now standing with
@startuml
file myFile
(firstBinary)
@enduml
which doesn't really do what I want.