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

net.dv8tion.jda.api.requests.restaction.AbstractWebhookMessageAction Maven / Gradle / Ivy

Go to download

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

There is a newer version: 5.1.0
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.requests.restaction;

import net.dv8tion.jda.api.entities.channel.concrete.ThreadChannel;
import net.dv8tion.jda.api.requests.FluentRestAction;

import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/**
 * Abstraction for requests related to webhook executions.
 * 
This adds the ability to change the context in which the webhook is used, by setting a {@link #setThread(ThreadChannel) thread id}. * * @param * The result type * @param * The action type */ public interface AbstractWebhookMessageAction> extends FluentRestAction { /** * Set the target thread id for the webhook message. *
This allows sending webhook messages in the target thread, * however the webhook must be part of the thread parent channel. * *

This cannot be used with {@link net.dv8tion.jda.api.interactions.InteractionHook InteractionHooks}! * * @param threadId * The target thread id or null to unset * * @throws IllegalStateException * If this is an interaction webhook * @throws IllegalArgumentException * If the provided ID is not a valid snowflake * * @return The same message action, for chaining convenience */ @Nonnull @CheckReturnValue R setThreadId(@Nullable String threadId); /** * Set the target thread id for the webhook message. *
This allows sending webhook messages in the target thread, * however the webhook must be part of the thread parent channel. * *

This cannot be used with {@link net.dv8tion.jda.api.interactions.InteractionHook InteractionHooks}! * * @param threadId * The target thread id or 0 to unset * * @throws IllegalStateException * If this is an interaction webhook * * @return The same message action, for chaining convenience */ @Nonnull @CheckReturnValue default R setThreadId(long threadId) { return setThreadId(threadId == 0 ? null : Long.toUnsignedString(threadId)); } /** * Set the target thread for the webhook message. *
This allows sending webhook messages in the target thread, * however the webhook must be part of the thread parent channel. * *

This cannot be used with {@link net.dv8tion.jda.api.interactions.InteractionHook InteractionHooks}! * * @param channel * The target thread channel * * @throws IllegalStateException * If this is an interaction webhook * * @return The same message action, for chaining convenience */ @Nonnull @CheckReturnValue default R setThread(@Nullable ThreadChannel channel) { return setThreadId(channel == null ? null : channel.getId()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy