We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d61f6 commit e93861dCopy full SHA for e93861d
1 file changed
application/src/main/java/org/togetherjava/tjbot/features/voicechat/DynamicVoiceChat.java
@@ -18,7 +18,13 @@
18
import java.util.List;
19
import java.util.regex.Pattern;
20
21
-public class DynamicVoiceChat extends VoiceReceiverAdapter {
+/**
22
+ * Handles dynamic voice channel creation and deletion based on user activity.
23
+ * <p>
24
+ * When a member joins a configured root channel, a temporary copy is created and the member is
25
+ * moved into it. Once the channel becomes empty, it is deleted.
26
+ */
27
+public final class DynamicVoiceChat extends VoiceReceiverAdapter {
28
private static final Logger logger = LoggerFactory.getLogger(DynamicVoiceChat.class);
29
private final List<Pattern> dynamicVoiceChannelPatterns;
30
0 commit comments