net.dv8tion.jda.api.events.thread.GenericThreadEvent Maven / Gradle / Ivy
Show all versions of JDA Show documentation
/*
* 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.events.thread;
import net.dv8tion.jda.api.JDA;
import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.channel.concrete.ThreadChannel;
import net.dv8tion.jda.api.events.Event;
import javax.annotation.Nonnull;
/**
* Top-level thread event type
*
All thread events JDA fires are derived from this class.
*
* Can be used to check if an Object is a JDA event in {@link net.dv8tion.jda.api.hooks.EventListener EventListener} implementations to distinguish what event is being fired.
*
Adapter implementation: {@link net.dv8tion.jda.api.hooks.ListenerAdapter ListenerAdapter}
*/
public class GenericThreadEvent extends Event
{
protected final ThreadChannel thread;
public GenericThreadEvent(@Nonnull JDA api, long responseNumber, ThreadChannel thread)
{
super(api, responseNumber);
this.thread = thread;
}
/**
* The event related {@link ThreadChannel} object
*
* @return The event related {@link ThreadChannel} object
*/
@Nonnull
public ThreadChannel getThread()
{
return thread;
}
/**
* The {@link Guild} containing the {@link ThreadChannel}.
*
* @return The {@link Guild} containing the {@link ThreadChannel}.
*/
@Nonnull
public Guild getGuild()
{
return thread.getGuild();
}
}