FOSMessageBundle中的Thead是什么



我不明白fosmessageBundle中的线程类是什么(https://github.com/friendsofsymfony/fosmessagebundle(。

您能解释它的代表吗?

线程就像对话一样,它包含同一参与者之间的消息列表。


仔细观察模型类将帮助您了解其工作原理:

一个线程包含一系列消息以及 关于线程的重要元数据。

/**
 * Messages contained in this thread.
 *
 * @var Collection|MessageInterface[]
 */
protected $messages;
/**
 * Thread metadata.
 *
 * @var Collection|ThreadMetadata[]
 */
protected $metadata;
/**
 * Users participating in this conversation.
 *
 * @var Collection|ParticipantInterface[]
 */
protected $participants;

线程包含不同参与者的消息,例如论坛

相关内容

  • 没有找到相关文章

最新更新