All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dv8tion.jda.api.utils.ChunkingFilter Maven / Gradle / Ivy

Go to download

Java wrapper for the popular chat & VOIP service: Discord https://discord.com

There is a newer version: 5.0.1
Show newest version
/*
 * Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.dv8tion.jda.api.utils;

import net.dv8tion.jda.internal.utils.Checks;

import javax.annotation.Nonnull;

/**
 * Filter function for member chunking of guilds.
 * 
The filter decides based on the provided guild id whether chunking should be done * on guild initialization. * *

To use chunking, the {@link net.dv8tion.jda.api.requests.GatewayIntent#GUILD_MEMBERS GUILD_MEMBERS} intent must be enabled! * Otherwise you must use {@link #NONE}! * * @since 4.1.0 * * @see #ALL * @see #NONE * * @see net.dv8tion.jda.api.JDABuilder#setChunkingFilter(ChunkingFilter) JDABuilder.setChunkingFilter(ChunkingFilter) * @see net.dv8tion.jda.api.sharding.DefaultShardManagerBuilder#setChunkingFilter(ChunkingFilter) DefaultShardManagerBuilder.setChunkingFilter(ChunkingFilter) */ @FunctionalInterface public interface ChunkingFilter { /** Chunk all guilds */ ChunkingFilter ALL = (x) -> true; /** Do not chunk any guilds (lazy loading) */ ChunkingFilter NONE = (x) -> false; /** * Decide whether the specified guild should chunk members. * * @param guildId * The guild id * * @return True, if this guild should chunk */ boolean filter(long guildId); /** * Factory method to chunk a whitelist of guild ids. *
All guilds that are not mentioned will use lazy loading. * *

This is useful to only chunk specific guilds like the hub server of a bot. * * @param ids * The ids that should be chunked * * @return The resulting filter */ @Nonnull static ChunkingFilter include(@Nonnull long... ids) { Checks.notNull(ids, "ID array"); if (ids.length == 0) return NONE; return (guild) -> { for (long id : ids) { if (id == guild) return true; } return false; }; } /** * Factory method to disable chunking for a blacklist of guild ids. *
All guilds that are not mentioned will use chunking. * *

This is useful when the bot is only in one very large server that * takes most of its memory and should be ignored instead. * * @param ids * The ids that should not be chunked * * @return The resulting filter */ @Nonnull static ChunkingFilter exclude(@Nonnull long... ids) { Checks.notNull(ids, "ID array"); if (ids.length == 0) return ALL; return (guild) -> { for (long id : ids) { if (id == guild) return false; } return true; }; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy