When is the subscribe call back pattern going to be properly removed? #6051
Answered
by
benlesh
phillip-whitaker
asked this question in
Q&A
-
I know that the previous subscribe pattern is deprecated and you now need to use the subscribe with an observer. But when will we need to move over, do we know in what version it will be removed? date etc. |
Beta Was this translation helpful? Give feedback.
Answered by
benlesh
Feb 25, 2021
Replies: 1 comment 1 reply
-
We're planning on supporting |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kwonoj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We're planning on supporting
subscribe(callback: (value: T) => void)
andsubscribe(Partial<Observer<T>>)
past version 8. onlysubscribe(fn, fn)
andsubscribe(fn, fn, fn)
are going to be removed.