MessageLimitConfig

data class MessageLimitConfig(val channelMessageLimits: Set<ChannelMessageLimit> = setOf())

Configuration for message limits in channels.

Parameters

channelMessageLimits

A set of ChannelMessageLimit defining the maximum number of messages to keep in memory for different channel types. This configuration allows you to specify the maximum number of messages to keep in memory for different channel types. By default, no limits per channel type are applied, meaning all messages will be kept in memory.

Constructors

Link copied to clipboard
constructor(channelMessageLimits: Set<ChannelMessageLimit> = setOf())

Properties