net.dv8tion.jda.api.requests.restaction.interactions.ReplyCallbackAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JDA Show documentation
Show all versions of JDA Show documentation
Java wrapper for the popular chat & VOIP service: Discord https://discord.com
/*
* 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.interactions;
import net.dv8tion.jda.api.interactions.InteractionHook;
import net.dv8tion.jda.api.requests.FluentRestAction;
import net.dv8tion.jda.api.utils.messages.MessageCreateRequest;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
/**
* A {@link InteractionCallbackAction} which can be used to send a message reply for an interaction.
*
You can use {@link #setEphemeral(boolean)} to hide this message from other users.
*/
public interface ReplyCallbackAction extends InteractionCallbackAction, MessageCreateRequest, FluentRestAction
{
@Nonnull
@Override
ReplyCallbackAction closeResources();
/**
* Set whether this message should be visible to other users.
*
When a message is ephemeral, it will only be visible to the user that used the interaction.
*
* Ephemeral messages have some limitations and will be removed once the user restarts their client.
*
Limitations:
*
* - Cannot contain any files/attachments
* - Cannot be reacted to
* - Cannot be retrieved
*
*
* @param ephemeral
* True, if this message should be invisible for other users
*
* @return The same reply action, for chaining convenience
*/
@Nonnull
@CheckReturnValue
ReplyCallbackAction setEphemeral(boolean ephemeral);
}