Package io.rong.calllib.message
Class CallSummaryMessage
-
- All Implemented Interfaces:
public class CallSummaryMessage
-
-
Field Summary
Fields Modifier and Type Field Description public String
caller
public String
inviter
public RongCallCommon.CallMediaType
mediaType
public List<String>
memberIdList
public long
startTime
public long
activeTime
public long
duration
public RongCallCommon.CallDisconnectedReason
reason
public final static Creator<CallSummaryMessage>
CREATOR
-
Constructor Summary
Constructors Constructor Description CallSummaryMessage(Parcel in)
CallSummaryMessage()
CallSummaryMessage(Array<byte> data)
-
Method Summary
Modifier and Type Method Description String
getCaller()
void
setCaller(String caller)
String
getInviter()
void
setInviter(String inviter)
RongCallCommon.CallMediaType
getMediaType()
void
setMediaType(RongCallCommon.CallMediaType mediaType)
List<String>
getMemberIdList()
void
setMemberIdList(List<String> memberIdList)
long
getStartTime()
void
setStartTime(long startTime)
long
getActiveTime()
void
setActiveTime(long activeTime)
long
getDuration()
void
setDuration(long duration)
RongCallCommon.CallDisconnectedReason
getReason()
void
setReason(RongCallCommon.CallDisconnectedReason reason)
Array<byte>
encode()
void
writeToParcel(Parcel dest, int flags)
将类的数据写入外部提供的 Parcel 中。 int
describeContents()
描述了包含在 Parcelable 对象排列信息中的特殊对象的类型。 -
-
Constructor Detail
-
CallSummaryMessage
CallSummaryMessage(Parcel in)
-
CallSummaryMessage
CallSummaryMessage()
-
CallSummaryMessage
CallSummaryMessage(Array<byte> data)
-
-
Method Detail
-
getCaller
String getCaller()
-
setCaller
void setCaller(String caller)
-
getInviter
String getInviter()
-
setInviter
void setInviter(String inviter)
-
getMediaType
RongCallCommon.CallMediaType getMediaType()
-
setMediaType
void setMediaType(RongCallCommon.CallMediaType mediaType)
-
getMemberIdList
List<String> getMemberIdList()
-
setMemberIdList
void setMemberIdList(List<String> memberIdList)
-
getStartTime
long getStartTime()
-
setStartTime
void setStartTime(long startTime)
-
getActiveTime
long getActiveTime()
-
setActiveTime
void setActiveTime(long activeTime)
-
getDuration
long getDuration()
-
setDuration
void setDuration(long duration)
-
getReason
RongCallCommon.CallDisconnectedReason getReason()
-
setReason
void setReason(RongCallCommon.CallDisconnectedReason reason)
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
将类的数据写入外部提供的 Parcel 中。
- Parameters:
dest
- 对象被写入的 Parcel。flags
- 对象如何被写入的附加标志,可能是 0 或 PARCELABLE_WRITE_RETURN_VALUE。
-
describeContents
int describeContents()
描述了包含在 Parcelable 对象排列信息中的特殊对象的类型。
- Returns:
一个标志位,表明Parcelable对象特殊对象类型集合的排列。
-
-
-
-