Hello,
What is the best way for you to manage a subscription which is accessed by multiple controller ?
I don’t want the subscription to be automatically closed when the controller (the scope) is destroyed. Because when the controller is load one more time, or when the user returns to this controller, the interface has to wait the subscription a new time (and this causes a flicker effect on the interface) .
Actually, to solve this problem, I manage the subscription inside a service. Inside this service, I use the natives Meteor methods to manage subscription (I dont want to have this service dependant on a angular scope…).
Thanks for your advices.