Any Data Sequence

Description

This object is being used to multiply any message (and message type) to multiple ports. Each ‘Out’ will contain a copy of the value supplied to the ‘In’ port.


App Builder Object


Source Code

function execute() { // number of out ports const ports = 10; const out = []; for (let i = 0; i < ports; i += 1) { out.push(inPorts[0]); } return out; }

Examples

In

Out 1

Out 2

In

Out 1

Out 2

ON

ON

ON

ON

“Test”

“Test“

“Test“

“Test“

123

123

123

123


In Ports

Position

Name

Message Type

Description

Position

Name

Message Type

Description

1

In

Any

This port is being used to receive any message for the 'Any Data Sequence'. Once the message is received this object executes.


Out Ports

Position

Name

Message Type

Description

Position

Name

Message Type

Description

1

Out 1

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

2

Out 2

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

3

Out 3

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

4

Out 4

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

5

Out 5

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

6

Out 6

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

7

Out 7

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

8

Out 8

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

9

Out 9

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

10

Out 10

Any

This port is being used to send out one of the result messages of the ‘Any Data Sequence' once the object executes.

 


Properties

Name

Description

Name

Description

Object Name

The name of the object on the canvas.

Show Code View

The switch to turn on code view for the Code Object.

Duplicate code into custom Code Object