I have a question about the subscribe method.
I am building a sample that receives events and the add_event_callback method has the option of subscribing to the topic. So why would I ever need to use subscribe?
The subscribe method has the following code as an example
The text says "By default when registering an event callback the client will automatically subscribe to the topic. In this example the dxlclient.client.DxlClient.add_event_callback()
method is invoked with the subscribe_to_topic
parameter set to False
preventing the automatic subscription."
If the add event callback does this why do I need subscribe?