有什么方法可以批量处理一个方法,而不是在Java中多次调用它

时间:2019-11-12 12:10:22

标签: java batch-processing

我需要多次调用一个方法,我想知道有没有比for循环更好的方法了

这是我的代码

for (int i = 0; i < ids.size(); i++) {
    deleteMessage(currentUser, senderPeerId, messageList.get(i).getId(), contactType, uniqIds.get(i), deleteForAll);
}

我想删除多次调用消息方法而不使用for循环,我的意思是类似批处理实现

0 个答案:

没有答案