Member technical staff

is there any non blocking for get_response in sequence/driver handshaking???

In reply to Rahul_nyol:

Driver side:

  1. get_next_item() is blocking call which gets sequence item and need to call the item_done() to complete the handshake before new item is requested using the get_next_item().

  2. get() is also a blocking call which gets sequence item. There isn’t need of calling the item_done() as get method complete the handshake. so here you can send multiple sequence item to driver and don’t have to wait till driver finish it driving and call item_done().