How to come out from forever in sequence and executes phase.drop objection

I have started 4 sequences parallelly after phase.raise objection and All 4 sequences are executing in forever, can any one tell how to come out from forever and executes phase.drop objection.

In reply to sh88:

First of all, we recommend raising and dropping objections of the component level. That could be in your test class, or your scoreboard class. Some sequences, like slaves, are perpetual and you might never want to break out of a forever loop.

But if you ever find that you do need to break out of a forever loop, there is always the break statement.

In reply to sh88:

You can use events, config_db or responces

In reply to sh88:

I have started 4 sequences parallelly after phase.raise objection and All 4 sequences are executing in forever, can any one tell how to come out from forever and executes phase.drop objection.

The recommendation is to avpid any forever loop in the sequence. Generate only a reasonable number of sequence items. A for ever loop complicates the processing.