Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method Sync 
 | 
{ 
 | 
  Description: 
 | 
  [* 
 | 
    Synchronize the settings from the `LibOpt_Run` to the `LibOpt_LinkStart`. 
 | 
     
 | 
    We need this for backwards compatibility: the start component and whether to run in one transaction was always stored on the `LibOpt_Run`. 
 | 
  *] 
 | 
  TextBody: 
 | 
  [* 
 | 
    this.Destination( relset, this.Run().StartComponent() ); 
 | 
     
 | 
    if( this.Run().InOneTransaction() ) 
 | 
    { 
 | 
      this.SetTaskTransporterOneTransaction( false ); 
 | 
    } 
 | 
    else 
 | 
    { 
 | 
      this.SetTaskTransporterReactive(); 
 | 
    } 
 | 
  *] 
 | 
  InterfaceProperties { Accessibility: 'Module' } 
 | 
} 
 |