The fire-base service has built in methods...
Public Sub SubscribeToTopic (Topic As String)
fm.SubscribeToTopic(Topic)
End Sub
Public Sub UnsubscribeToTopics(topic As String)
fm.UnsubscribeFromTopic(topic)
End Sub
To get a token, one executes
All these calls do not execute immediately or rather need to propagate first. What id like to achieve is wait until a token is retrieved, wait until a subscription is made and also wait until an un-subscribe method is execute.
The methods discussed in the other posts are for "outside execution", so i wanted to avoid having to write extra code to do that.
For example, sending a message for firebase is not built it, one needs to write a post and wait for it to finish if they follow that approach.
If its possible for the built in methods to use some kind of waiting mechanism, all is good for my case. If not possible then I guess I have to code the post request, though thats not my outlook.