如何在后台线程中顺序执行函数?

How to execute functions sequentially in the background thread?

我正在制作一个 Android 聊天应用程序,它具有从应用程序中选择和发送多张图片的功能。我使用 RxJava 运行 后台线程中的发送函数。

我从图库中获取多张图片并将它们一张一张地放入 for 循环中,如下面的代码所示。我面临的问题是图像的顺序没有得到保留。

这是我用来发送多张图片的代码。

public void onMessageSent(String messageText, ArrayList<Attachment> attachments) {
        if (!ObjectUtils.isEmpty(attachments)) {
            Stream.of(attachments)
                    .forEach(attachment -> chatInteractor.sendAttachment(mConversationId, attachment, messageParticipants, quoteMessageId)
                            .subscribeOn(Schedulers.io())
                            .observeOn(AndroidSchedulers.mainThread())
                            .subscribe(MapUtils::dummyfunction, errorHandler::logErrorViaInstance));

        }
    }

messageText 包含必须与图像一起发送的消息,ArrayList attatchments 包含所有图像及其数据,chatInteractor.sendAttachment 是一个 public 函数使用 return 类型 Maybe<Message>.

图像的顺序保持在attatchments。但是,当所有图像都在后台线程中发送时 Schedulers.io(),有些图像会提前发送,有些会延迟发送。

如何维护秩序?我应该更改哪些代码?

我尝试将 subscribeOn 更改为 Schedulers.single()Schedulers.trampoline(),但其中 none 有帮助。

直接使用RxJava做一个上传序列:

Observable.fromIterable(attachments)
.concatMapMaybe(attachment -> 
     chatInteractor.sendAttachment(
         mConversationId, attachment, messageParticipants, quoteMessageId
     )
     .subscribeOn(Schedulers.io())
)
.observeOn(AndroidSchedulers.mainThread())
.subscribe(MapUtils::dummyfunction, errorHandler::logErrorViaInstance);