use of net.dv8tion.jda.api.entities.ThreadChannel in project JDA by DV8FromTheWorld.
the class ThreadChannelActionImpl method handleSuccess.
@Override
protected void handleSuccess(Response response, Request<ThreadChannel> request) {
ThreadChannel channel = api.getEntityBuilder().createThreadChannel(response.getObject(), guild.getIdLong());
request.onSuccess(channel);
}
Aggregations