Files
ma/nextflow/docs/developer/diagrams/nextflow.processor.mmd
2026-04-29 23:01:54 +02:00

45 lines
934 B
Plaintext

classDiagram
%%
%% nextflow.processor
%%
%% ProcessDef --> TaskProcessor : run
class TaskProcessor {
config : ProcessConfig
executor : Executor
id : int
name : String
operator : DataflowProcessor
taskBody : BodyDef
}
TaskProcessor --> TaskRun : invokeTask
TaskProcessor --> PublishDir : finalizeTask
class TaskRun {
config : TaskConfig
context : TaskContext
hash : HashCode
id : TaskId
index : int
inputs : Map
name : String
outputs : Map
runType : RunType
type : ScriptType
workDir : Path
}
TaskRun --* TaskConfig
TaskRun --* TaskContext
TaskRun --> TaskBean : toTaskBean
class TaskConfig {
target : Map
binding : Map
}
class TaskContext {
holder : Map
script : Script
name : String
}