Driver-Sequencer handshake mechanism when pipelining used

In reply to harsh pandya:
Hi Harsh ,

the for loop and parallel block is as below :-


task body();
      for ( int i = 0; i<=9; i++) begin
        //create item
        //Start item
        //randomized
        // send request
        // finish item
        fork
           // get response
        join_none
      end
    wait fork // My query need to use or not ??
  endtask : body


Thanks for commenting.