How can I run delayed logic with rxjs after receiving a value from a subscription?

Viewed 296

i want to run part of my logic after my subscription with an additional delay (with RxJS). I know about the finalize operator, which i could use with a pipe, but that would lead to an immediate execution after the completion of my observable.

Is there a way to create a delay before running finalize?

Additional information:

I am subscribing to a server call, meaning i am only expecting one value.

1 Answers
Related