- Enclosing class:
- TdApi
Returns messages in a chat. The messages are returned in a reverse
chronological order (i.e., in order of decreasing messageId). For
optimal performance, the number of returned messages is chosen by
TDLib. This is an offline request if onlyLocal is true.
Returns Messages
-
Field Summary
Modifier and TypeFieldDescriptionlong
Chat identifier.static final int
Identifier uniquely determining type of the object.long
Identifier of the message starting from which history must be fetched; use 0 to get results from the last message.int
The maximum number of messages to be returned; must be positive and can't be greater than 100.int
Specify 0 to get results from exactly the fromMessageId or a negative offset up to 99 to get additionally some newer messages.boolean
Pass true to get only messages that are available without sending network requests. -
Constructor Summary
ConstructorDescriptionReturns messages in a chat.GetChatHistory
(long chatId, long fromMessageId, int offset, int limit, boolean onlyLocal) Returns messages in a chat.GetChatHistory
(DataInput input) Returns messages in a chat. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
Returns an identifier uniquely determining type of the object.int
hashCode()
void
serialize
(DataOutput output) Serialize the TDLib classMethods inherited from class it.tdlight.jni.TdApi.Function
toString
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize
-
Field Details
-
chatId
public long chatIdChat identifier. -
fromMessageId
public long fromMessageIdIdentifier of the message starting from which history must be fetched; use 0 to get results from the last message. -
offset
public int offsetSpecify 0 to get results from exactly the fromMessageId or a negative offset up to 99 to get additionally some newer messages. -
limit
public int limitThe maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit. -
onlyLocal
public boolean onlyLocalPass true to get only messages that are available without sending network requests. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
GetChatHistory
public GetChatHistory()Returns messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing messageId). For optimal performance, the number of returned messages is chosen by TDLib. This is an offline request if onlyLocal is true.Returns
Messages
-
GetChatHistory
public GetChatHistory(long chatId, long fromMessageId, int offset, int limit, boolean onlyLocal) Returns messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing messageId). For optimal performance, the number of returned messages is chosen by TDLib. This is an offline request if onlyLocal is true.Returns
Messages
- Parameters:
chatId
- Chat identifier.fromMessageId
- Identifier of the message starting from which history must be fetched; use 0 to get results from the last message.offset
- Specify 0 to get results from exactly the fromMessageId or a negative offset up to 99 to get additionally some newer messages.limit
- The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.onlyLocal
- Pass true to get only messages that are available without sending network requests.Returns
Messages
-
GetChatHistory
Returns messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing messageId). For optimal performance, the number of returned messages is chosen by TDLib. This is an offline request if onlyLocal is true.Returns
Messages
- Parameters:
input
- Serialized input- Throws:
IOException
- the deserialization failed
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-
serialize
Serialize the TDLib class- Specified by:
serialize
in classTdApi.Object
- Parameters:
output
- output data stream- Throws:
IOException
- the serialization failed
-
equals
-
hashCode
public int hashCode()
-