Package io.rong.message
Class HasReceivedNotificationMessage
-
- All Implemented Interfaces:
public class HasReceivedNotificationMessage
Notification Message
Indicates that the message has been received and will not be stored in the message history.
-
-
Field Summary
Fields Modifier and Type Field Description public final static Creator<HasReceivedNotificationMessage>
CREATOR
-
Constructor Summary
Constructors Constructor Description HasReceivedNotificationMessage(Parcel in)
-
Method Summary
Modifier and Type Method Description Array<byte>
encode()
Serializes the data to be transmitted. void
writeToParcel(Parcel dest, int flags)
int
describeContents()
boolean
isHasReceived()
Retrieves the status of message receipt. void
setHasReceived(boolean hasReceived)
Sets the received status of the message. -
-
Method Detail
-
encode
Array<byte> encode()
Serializes the data to be transmitted.
- Returns:
The serialized data for transmission.
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
-
describeContents
int describeContents()
-
isHasReceived
boolean isHasReceived()
Retrieves the status of message receipt.
- Returns:
Indicates the status of message receipt.
-
setHasReceived
void setHasReceived(boolean hasReceived)
Sets the received status of the message.
- Parameters:
hasReceived
- Indicates the received status of the message
-
-
-
-