Properties | |
V2TIMMessageGetType | getType |
NSString * | userID |
NSString * | groupID |
NSUInteger | count |
NSArray< NSNumber * > * | messageTypeList |
V2TIMMessage * | lastMsg |
NSUInteger | lastMsgSeq |
NSUInteger | getTimeBegin |
NSUInteger | getTimePeriod |
NSArray< NSNumber * > * | messageSeqList |
|
readwritenonatomicassign |
Message pulling type (whether to pull older or newer messages from the cloud or local storage)
If messages are pulled from the cloud, they will be merged with locally stored messages before being returned. If network connection is not available, only locally stored messages will be returned.
About getType, the starting message, and the time range for message pulling:
getType | Pulling type. Valid values: V2TIM_GET_CLOUD_OLDER_MSG, V2TIM_GET_CLOUD_NEWER_MSG, V2TIM_GET_LOCAL_OLDER_MSG, V2TIM_GET_LOCAL_NEWER_MSG |
|
readwritenonatomicstrong |
Pull the message history of a one-to-one chat.
|
readwritenonatomicstrong |
Pull the message history of a group chat.
|
readwritenonatomicassign |
Number of messages to be pulled.
|
readwritenonatomicstrong |
Set the type of messages to pull. This API works only if getType is V2TIM_GET_LOCAL_OLDER_MSG or V2TIM_GET_LOCAL_NEWER_MSG. If nil is passed in, all message types will be pulled.
|
readwritenonatomicstrong |
Start message for message pulling
When one-to-one messages are pulled, only lastMsg can be used to specify the start point for message pulling. If lastMsg is not specified, the Chat SDK will pull starting from the newest message of the conversation.
When group messages are pulled, lastMsg or lastMsgSeq can be used to specify the start point for message pulling:
If both lastMsg and lastMsgSeq are specified, the Chat SDK will use lastMsg to determine the start point for message pulling.
If neither lastMsg nor lastMsgSeq is specified, there are two cases for determining the start point for message pulling:
|
readwritenonatomicassign |
|
readwritenonatomicassign |
Time range for message pulling
getTimeBegin: indicates the start point of the time range. The default value is 0, indicating to start pulling now. The value can also be a UTC timestamp, in seconds.
getTimePeriod: indicates the length of the time range, in seconds. The default value is 0, indicating that the time range is not limited.
The direction of the time range is determined by the getType parameter:
If getType is V2TIM_GET_CLOUD_OLDER_MSG/V2TIM_GET_LOCAL_OLDER_MSG, the time range is a time period (determined by getTimePeriod) prior to getTimeBegin.
If getType is V2TIM_GET_CLOUD_NEWER_MSG/V2TIM_GET_LOCAL_NEWER_MSG, the time range is a time period (determined by getTimePeriod) after getTimeBegin.
The value range is a closed range, including the start and end points in time. The relationship between the two is as follows:
|
readwritenonatomicassign |
|
readwritenonatomicstrong |
Pull the historical messages of a group chat according to the specified sequences (supported in 7.1 and later versions)