Why we don't use m_sequencer while writing our code?

Hi All,

How m_sequencer is available by default in a sequence? Among m_sequencer and p_sequencer which is recommended to use, when and why? Please explain with proper example.

In reply to shubham.anand:

It is rare that you should need to reference the sequencer that a sequence is running on, but if you need to, you should use the m_sequencer handle.

Using p_sequencer creates unnecessary dependencies between a sequence and sequencer which will limit the reuse of your sequences.