about arguements #34
-
types of arguements |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 5 replies
-
1.Arguments are similar to data variables, they store the data dynamically |
Beta Was this translation helpful? Give feedback.
-
in- data will come as input |
Beta Was this translation helpful? Give feedback.
-
Arguments are used to pass value from one workflow to another workflow whereas variables pass values within the current workflow. |
Beta Was this translation helpful? Give feedback.
-
In - if the work flow is expecting input from calling workflow |
Beta Was this translation helpful? Give feedback.
-
In − This direction means that the argument can only be used within the given workflow. |
Beta Was this translation helpful? Give feedback.
-
4 types 1.In , 2.out , 3.In/out , 4.properties |
Beta Was this translation helpful? Give feedback.
-
Arguments are same like variable, which holds data to store and pass between one workflow to another workflow. like variable arguments also has datatypes.. in addition to datatypes it has extra feature called Directions. Arguments has 3 directions in which way the data will pass from workflow to another workflow. |
Beta Was this translation helpful? Give feedback.
Arguments are used to pass value from one workflow to another workflow whereas variables pass values within the current workflow.
Types of arguments:
In: Value is passed into the workflow(input)
Out: Value is passed out of the workflow.
in/out :Value can be either passed in or out of the workflow
We can provide default value to in_args
Default value is not supported out_args.