蓝莺开发者
Web & Mini ProgramiOSAndroidC++Server API

floo::BMXFileAttachment#

消息文件附件

#include <bmx_file_attachment.h>

Inherits from floo::BMXMessageAttachment, BMXBaseObject

Inherited by floo::BMXImageAttachment, floo::BMXVideoAttachment, floo::BMXVoiceAttachment

Public Functions#

Name
BMXFileAttachment(const std::string & path, const std::string & displayName ="")
构造函数,构建发送文件消息附件
BMXFileAttachment(const std::string & ratelUrl, const std::string & displayName, int64_t fileLength)
构造函数,构建接收文件消息附件
virtual~BMXFileAttachment()
析构函数
virtual Typetype() const
返回文件类型
virtual BMXMessageAttachmentPtrclone() const
克隆函数
const std::string &path() const
本地路径
const std::string &displayName() const
显示名
const std::string &ratelUrl() const
远程ratel使用URL
const std::string &url() const
远程使用URL
int64_tfileLength() const
文件长度
DownloadStatusdownloadStatus() const
附件下载状态

Protected Attributes#

Name
std::stringmPath
std::stringmDisplayName
std::stringmRatelUrl
std::stringmUrl
int64_tmFileLength
DownloadStatusmDownloadStatus

Friends#

Additional inherited members#

Public Types inherited from floo::BMXMessageAttachment

Name
enum classType { Image, Voice, Video, File, Location, Command, Forward}
附件类型
enum classDownloadStatus { Downloaing, Successed, Failed, NotStart, Canceled}
附件下载状态

Public Functions inherited from floo::BMXMessageAttachment

Name
BMXMessageAttachment()
构造函数
virtual~BMXMessageAttachment()
析构函数

Public Functions Documentation#

function BMXFileAttachment#

BMXFileAttachment(
    const std::string & path,
    const std::string & displayName =""
)

构造函数,构建发送文件消息附件

Parameters:

  • path 文件的本地路径
  • displayName 文件展示名

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="BMXFileAttachment" %}{% endlanying_code_snippet %}

function BMXFileAttachment#

BMXFileAttachment(
    const std::string & ratelUrl,
    const std::string & displayName,
    int64_t fileLength
)

构造函数,构建接收文件消息附件

Parameters:

  • ratelUrl ratel文件服务器地址
  • displayName 文件展示名
  • fileLength 文件大小

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="BMXFileAttachment" %}{% endlanying_code_snippet %}

function ~BMXFileAttachment#

inline virtual ~BMXFileAttachment()

析构函数

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="~BMXFileAttachment" %}{% endlanying_code_snippet %}

function type#

inline virtual Type type() const

返回文件类型

Return: Type

Reimplements: floo::BMXMessageAttachment::type

Reimplemented by: floo::BMXImageAttachment::type, floo::BMXVideoAttachment::type, floo::BMXVoiceAttachment::type

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="type" %}{% endlanying_code_snippet %}

function clone#

virtual BMXMessageAttachmentPtr clone() const

克隆函数

Return: BMXMessageAttachmentPtr

Reimplements: floo::BMXMessageAttachment::clone

Reimplemented by: floo::BMXImageAttachment::clone, floo::BMXVideoAttachment::clone, floo::BMXVoiceAttachment::clone

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="clone" %}{% endlanying_code_snippet %}

function path#

const std::string & path() const

本地路径

Return: std::string

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="path" %}{% endlanying_code_snippet %}

function displayName#

const std::string & displayName() const

显示名

Return: std::string

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="displayName" %}{% endlanying_code_snippet %}

function ratelUrl#

const std::string & ratelUrl() const

远程ratel使用URL

Return: std::string

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="ratelUrl" %}{% endlanying_code_snippet %}

function url#

const std::string & url() const

远程使用URL

Return: std::string

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="url" %}{% endlanying_code_snippet %}

function fileLength#

int64_t fileLength() const

文件长度

Return: std::string

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="fileLength" %}{% endlanying_code_snippet %}

function downloadStatus#

DownloadStatus downloadStatus() const

附件下载状态

Return: DownloadStatus

Protected Attributes Documentation#

variable mPath#

std::string mPath;

variable mDisplayName#

std::string mDisplayName;

variable mRatelUrl#

std::string mRatelUrl;

variable mUrl#

std::string mUrl;

variable mFileLength#

int64_t mFileLength;

variable mDownloadStatus#

DownloadStatus mDownloadStatus;

Friends#

friend Encoder< BMXFileAttachment >#

friend class Encoder< BMXFileAttachment >(
    Encoder< BMXFileAttachment > 
);

friend Decoder< BMXFileAttachment >#

friend class Decoder< BMXFileAttachment >(
    Decoder< BMXFileAttachment > 
);

Example:

{% lanying_code_snippet repo="lanying-im-embedded",class="BMXFileAttachment",function="downloadStatus" %}{% endlanying_code_snippet %}

Updated on 2022-01-26 at 17:20:40 +0800

自动生成的 API 内容,仅在必要位置补充精简的 AI 解释。