After subscribing to my observable with RxJS, I am looking to introduce an additional delay before running part of my logic. While I am aware of the finalize operator and how it can be used within a pipe, I would like to avoid immediate execution after the completion of the observable.
Is there a way to incorporate a delay before the finalize operator is executed?
Some context:
The observable I am subscribing to involves a server call, so I am only anticipating one value to be returned.