There's no real advantage. Each approach moves the cost differently. If the background thread is long running then split tasks might fit into different EDT "beats" but that would be random.
Calls will remain "in order" when executed though.
Just make sure to minimize the "heavy lifting" on the EDT (e.g. parsing, storage etc.) and everything else should be fine.