Running different sequence_item from single sequence, sequencer, driver

Is there is any way to run different sequence_item(let’s say pkt1 and pkt2) using single sequence, sequencer and driver? Thanks.

In reply to mayurmohd:

You can if the different sequence items share a base class. For example it’s fairly common to extend a sequence item with additional constraints. The sequencer and driver won’t care that it was pessed an extension to the sequence item class object as long as it has no need to access any extended properties in that object, or you’ve provided virtual methods fro everything it needs.