-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onMainThread triggering multiple times #28
Comments
Hi @AskarAli. Thanks for using SwiftEventBus by the way. |
I have used this for a test purpose while tapping a button i have sent the post code as you mentioned in usage and printed the value thats it |
Can you share the code? Or the project? |
I have the same issue. I have used the event bus in a couple projects but the number of times a message is received is unpredictable. I put in traps to print to debug console when the POST is done and then inside the listener I print when the message is received. I even try unregistering the event inside the onMainThread routine, but even with that I sometimes get an extra call as if the message was posted again (but it was not). I don't have an isolated project at the moment to send. The event bus is in several places in my projects, but the duplicate calls of the listener are problematic. I did not notice for some time as mostly I was just using it to know when to reload a table. A second or third call to reload the table was not a problem - not noticeable. But later I used the events to control more complex sequential logic (e.g. doing multiple reads from firebase). |
I have exactly the same problem right know. Let me know if you need code in order to understand my problem. |
If more than one OC project is better |
Make sure you are unregistering properly or else everytime you register, it adds a new handler. |
@AskarAli Print instance in |
@AskarAli please make sure that you are subscribing to event in viewWillAppear and unregister in view viewWillDisappear |
THIS was killing me and I guess I didn't read the docs... thank you for pointing this out!!! |
When i call postToMainThread or simple post onMainThread is calling many times . triggering count is not predictable .
The text was updated successfully, but these errors were encountered: