我不明白FOSMessageBundle(https://github.com/FriendsOfSymfony/FOSMessageBundle)中的线程类是什么。
你能解释它代表什么吗?
答案 0 :(得分:2)
线程就像一个对话,它包含同一参与者之间的消息列表。
仔细查看模型类将帮助您了解它的工作原理:
thread包含Message以及Metadata的集合 关于线程的重要Read the reference here.。
/**
* 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;
答案 1 :(得分:-1)
主题包含论坛等不同参与者的消息