Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Create new thread for each Account.CreateOrder

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Create new thread for each Account.CreateOrder

    Hello,

    I am working on a script to submit an order to multiple accounts simultaneously in a loop. i.e.

    foreach (Account myAccount in MyAccoutList)
    {
    submitTheAccount(myAccount);
    }

    Will it be more efficient to start a new thread for each submitTheAccount call like this?

    foreach (Account myAccount in MyAccoutList)
    {
    Thread thread =new Thread(() =>submitTheAccount(myAccount));
    thread.Start();​
    }​

    Which way is recommended?

    #2
    Hello coppernob108,

    Threading is handled internally, we do not suggest using custom threading in Ninjascript to maintain the order of events the platform expects.

    Comment


      #3
      Hi Jesse,

      Thanks for the input.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      87 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      128 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      65 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      117 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      67 views
      0 likes
      Last Post PaulMohn  
      Working...
      X