waitContentWithMentions

suspend fun BehaviourContext.waitContentWithMentions(    username: Username,     initRequest: Request<*>? = null,     errorFactory: NullableRequestBuilder<*> = { null }): Flow<TextedContent>

Creates cold Flow with the messages with TextedContent where username has been mentioned

See also


suspend fun BehaviourContext.waitContentWithMentions(    user: User,     initRequest: Request<*>? = null,     errorFactory: NullableRequestBuilder<*> = { null }): Flow<TextedContent>

Creates cold Flow with the messages with TextedContent where user has been mentioned as text or mentioned with text

See also