获取本地消息的配置
beforeCount afterCount 总共分为四种情况
1. beforeCount > 0 && afterCount > 0,将获取 beforeCount + {messageId} + afterCount 的消息2. beforeCount > 0 && afterCount == 0,将获取 beforeCount + {messageId} 的消息3. beforeCount == 0 && afterCount > 0,将获取 {messageId} + afterCount 的消息4. beforeCount == 0 && afterCount == 0,将获取 {messageId} Copy
1. beforeCount > 0 && afterCount > 0,将获取 beforeCount + {messageId} + afterCount 的消息2. beforeCount > 0 && afterCount == 0,将获取 beforeCount + {messageId} 的消息3. beforeCount == 0 && afterCount > 0,将获取 {messageId} + afterCount 的消息4. beforeCount == 0 && afterCount == 0,将获取 {messageId}
1.0.0
Optional
objectName 集合,为空的话代表获取所有类型的本地消息
有效值的话代表获取指定类型的消息
消息本地数据库 ID
在 messageId 之前的消息个数,取值 >=0
beforeCount 如果传入 10 ,但是获取的个数不足时说明往前没有更多的消息了
在 messageId 之后的消息个数,取值 >=0
afterCount 如果传入 10 ,但是获取的个数不足时说明往后没有更多的消息了
获取本地消息的配置
beforeCount afterCount 总共分为四种情况
Version
1.0.0