cancel
Showing results for 
Search instead for 
Did you mean: 

difference between fork and par for each( multicast )

Former Member
0 Kudos

hi all,

what is the difference between FORK and PAR FOR EACH.

regards

RAO

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos
bhavesh_kantilal
Active Contributor
0 Kudos

Hi,

Fork allows you to do parallel processing iver any number of branches. Each perfroming didferent tasks.

Block with par for each is used to do the same set of tasks for a set of values/ messages belonging to a particular interface. This is equialavent to a for loop where the end condition is something like for a set of values in some source!

Regards

Bhavesh

Former Member
0 Kudos

Hi,

Fork is used when we need to send the same message to different receivers. Basically, multiple copies of the message is created, depending on the number of branches in the fork.

A par for each, is used to send messages in parallel(simultaneously) to the target system and not one after another.

Regards,

Smitha.

Former Member
0 Kudos

<u>FORK:</u>

You have a defined amount of branches

<u>par for each:</u>You have not a defined amount of branches; you loop over a special amount of messages of the same message interface

Regards Mario