mirror of
https://github.com/ushahidi/SMSSync.git
synced 2026-04-25 15:55:57 +03:00
[GH-ISSUE #424] SyncPendingMessagesTask is an AsyncTask, but is not triggered from UI thread #302
Labels
No labels
Bug report
Code improvement
Concern
Feature request
Feature request
Good first issue to work on
In progress
Needs info
Question
Ready
Translation
User Experience
User Experience
Website
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SMSSync#302
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @alxndrsn on GitHub (Apr 8, 2016).
Original GitHub issue: https://github.com/ushahidi/SMSSync/issues/424
SyncPendingMessagesTask extends AsyncTask.From Android documentation:
The only user of
SyncPendingMessagesTaskisSyncPendingMessagesService.As
SyncPendingMessagesServiceis an instance ofIntentService, which already uses a worker thread, it should be safe to execute theSyncPendingMessagesTaskon the same thread thatSyncPendingMessagesServiceis already running on.@eyedol commented on GitHub (Apr 29, 2016):
This should be addressed by
PR#445