Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
void setPartition ( drudr fromto, drudr tofrom )

Parameter

Description

to

The UDR to which the partition is copied.

from

The existing UDR from which the partition will be copied. This UDR must have already been assigned a partition either automatically or by other calls to setPartition.

to

The UDR to which the partition is copied.

Info

Example - using setPartition

A simple APL example of setPartition:

Code Block
consume {
  OutputUDR outputUDR = udrCreate(OutputUDR);
  setPartition(inputoutputUDR, outputUDRinput);
  udrRoute(outputUDR);
}

...