mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-12-01 13:23:59 +01:00
Update dependencies
This commit is contained in:
parent
d739754839
commit
1940d78159
@ -84,7 +84,8 @@ public class JDAConnectionManager implements DiscordConnectionManager {
|
|||||||
private final FailureCallback failureCallback;
|
private final FailureCallback failureCallback;
|
||||||
private Future<?> failureCallbackFuture;
|
private Future<?> failureCallbackFuture;
|
||||||
private ScheduledExecutorService gatewayPool;
|
private ScheduledExecutorService gatewayPool;
|
||||||
private ScheduledExecutorService rateLimitPool;
|
private ScheduledExecutorService rateLimitSchedulerPool;
|
||||||
|
private ExecutorService rateLimitElasticPool;
|
||||||
|
|
||||||
private CompletableFuture<Void> connectionFuture;
|
private CompletableFuture<Void> connectionFuture;
|
||||||
private JDA instance;
|
private JDA instance;
|
||||||
@ -298,9 +299,17 @@ public class JDAConnectionManager implements DiscordConnectionManager {
|
|||||||
1,
|
1,
|
||||||
r -> new Thread(r, Scheduler.THREAD_NAME_PREFIX + "JDA Gateway")
|
r -> new Thread(r, Scheduler.THREAD_NAME_PREFIX + "JDA Gateway")
|
||||||
);
|
);
|
||||||
this.rateLimitPool = new ScheduledThreadPoolExecutor(
|
this.rateLimitSchedulerPool = new ScheduledThreadPoolExecutor(
|
||||||
5,
|
2,
|
||||||
new CountingThreadFactory(Scheduler.THREAD_NAME_PREFIX + "JDA RateLimit #%s")
|
new CountingThreadFactory(Scheduler.THREAD_NAME_PREFIX + "JDA RateLimit Scheduler #%s")
|
||||||
|
);
|
||||||
|
this.rateLimitElasticPool = new ThreadPoolExecutor(
|
||||||
|
0,
|
||||||
|
12,
|
||||||
|
60L,
|
||||||
|
TimeUnit.SECONDS,
|
||||||
|
new SynchronousQueue<>(),
|
||||||
|
new CountingThreadFactory(Scheduler.THREAD_NAME_PREFIX + "JDA RateLimit Elastic #%s")
|
||||||
);
|
);
|
||||||
this.failureCallbackFuture = discordSRV.scheduler().runAtFixedRate(
|
this.failureCallbackFuture = discordSRV.scheduler().runAtFixedRate(
|
||||||
this::checkDefaultFailureCallback,
|
this::checkDefaultFailureCallback,
|
||||||
@ -386,7 +395,8 @@ public class JDAConnectionManager implements DiscordConnectionManager {
|
|||||||
// Our own (named) threads
|
// Our own (named) threads
|
||||||
jdaBuilder.setCallbackPool(discordSRV.scheduler().forkJoinPool());
|
jdaBuilder.setCallbackPool(discordSRV.scheduler().forkJoinPool());
|
||||||
jdaBuilder.setGatewayPool(gatewayPool);
|
jdaBuilder.setGatewayPool(gatewayPool);
|
||||||
jdaBuilder.setRateLimitPool(rateLimitPool, true);
|
jdaBuilder.setRateLimitScheduler(rateLimitSchedulerPool, true);
|
||||||
|
jdaBuilder.setRateLimitElastic(rateLimitElasticPool);
|
||||||
jdaBuilder.setHttpClient(discordSRV.httpClient());
|
jdaBuilder.setHttpClient(discordSRV.httpClient());
|
||||||
|
|
||||||
WebSocketFactory webSocketFactory = new WebSocketFactory();
|
WebSocketFactory webSocketFactory = new WebSocketFactory();
|
||||||
@ -433,7 +443,7 @@ public class JDAConnectionManager implements DiscordConnectionManager {
|
|||||||
discordSRV.logger().info("Waiting up to " + TimeUnit.MILLISECONDS.toSeconds(timeoutMillis) + " seconds for JDA to shutdown...");
|
discordSRV.logger().info("Waiting up to " + TimeUnit.MILLISECONDS.toSeconds(timeoutMillis) + " seconds for JDA to shutdown...");
|
||||||
discordSRV.scheduler().run(() -> {
|
discordSRV.scheduler().run(() -> {
|
||||||
try {
|
try {
|
||||||
while (instance != null && !rateLimitPool.isShutdown()) {
|
while (instance != null && !rateLimitSchedulerPool.isShutdown()) {
|
||||||
Thread.sleep(50);
|
Thread.sleep(50);
|
||||||
}
|
}
|
||||||
} catch (InterruptedException ignored) {}
|
} catch (InterruptedException ignored) {}
|
||||||
@ -468,8 +478,11 @@ public class JDAConnectionManager implements DiscordConnectionManager {
|
|||||||
if (gatewayPool != null) {
|
if (gatewayPool != null) {
|
||||||
gatewayPool.shutdownNow();
|
gatewayPool.shutdownNow();
|
||||||
}
|
}
|
||||||
if (rateLimitPool != null && !rateLimitPool.isShutdown()) {
|
if (rateLimitSchedulerPool != null && !rateLimitSchedulerPool.isShutdown()) {
|
||||||
rateLimitPool.shutdownNow();
|
rateLimitSchedulerPool.shutdownNow();
|
||||||
|
}
|
||||||
|
if (rateLimitElasticPool != null) {
|
||||||
|
rateLimitElasticPool.shutdownNow();
|
||||||
}
|
}
|
||||||
if (failureCallbackFuture != null) {
|
if (failureCallbackFuture != null) {
|
||||||
failureCallbackFuture.cancel(false);
|
failureCallbackFuture.cancel(false);
|
||||||
|
@ -53,18 +53,18 @@ dependencyResolutionManagement {
|
|||||||
library('mcdependencydownload-velocity', 'dev.vankka', 'minecraftdependencydownload-velocity').versionRef('mcdependencydownload')
|
library('mcdependencydownload-velocity', 'dev.vankka', 'minecraftdependencydownload-velocity').versionRef('mcdependencydownload')
|
||||||
|
|
||||||
// Annotations
|
// Annotations
|
||||||
library('jetbrains-annotations', 'org.jetbrains', 'annotations').version('23.0.0')
|
library('jetbrains-annotations', 'org.jetbrains', 'annotations').version('24.0.1')
|
||||||
library('findbugs-annotations', 'com.google.code.findbugs', 'jsr305').version('3.0.2')
|
library('findbugs-annotations', 'com.google.code.findbugs', 'jsr305').version('3.0.2')
|
||||||
|
|
||||||
// JDA
|
// JDA
|
||||||
library('jda', 'net.dv8tion', 'JDA').version('5.0.0-beta.17')
|
library('jda', 'net.dv8tion', 'JDA').version('5.0.0-beta.20')
|
||||||
|
|
||||||
// OkHTTP
|
// OkHTTP
|
||||||
library('okhttp', 'com.squareup.okhttp3', 'okhttp').version('4.11.0')
|
library('okhttp', 'com.squareup.okhttp3', 'okhttp').version('4.12.0')
|
||||||
|
|
||||||
// Apache commons
|
// Apache commons
|
||||||
library('commons-lang', 'org.apache.commons', 'commons-lang3').version('3.12.0')
|
library('commons-lang', 'org.apache.commons', 'commons-lang3').version('3.14.0')
|
||||||
library('commons-io', 'commons-io', 'commons-io').version('2.11.0')
|
library('commons-io', 'commons-io', 'commons-io').version('2.15.1')
|
||||||
|
|
||||||
// Caffeine
|
// Caffeine
|
||||||
library('caffeine', 'com.github.ben-manes.caffeine', 'caffeine').version {
|
library('caffeine', 'com.github.ben-manes.caffeine', 'caffeine').version {
|
||||||
@ -78,7 +78,7 @@ dependencyResolutionManagement {
|
|||||||
library('dynamicproxy-runtime', 'dev.vankka', 'dynamicproxy-runtime').versionRef('dynamicproxy')
|
library('dynamicproxy-runtime', 'dev.vankka', 'dynamicproxy-runtime').versionRef('dynamicproxy')
|
||||||
|
|
||||||
// Jackson
|
// Jackson
|
||||||
library('jackson-databind', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.14.2')
|
library('jackson-databind', 'com.fasterxml.jackson.core', 'jackson-databind').version('2.16.1')
|
||||||
|
|
||||||
// Config(urate)
|
// Config(urate)
|
||||||
version('configurate', '4.2.0-yamlbranch-4')
|
version('configurate', '4.2.0-yamlbranch-4')
|
||||||
@ -117,7 +117,7 @@ dependencyResolutionManagement {
|
|||||||
library('log4j-core', 'org.apache.logging.log4j', 'log4j-core').version('2.0-beta9')
|
library('log4j-core', 'org.apache.logging.log4j', 'log4j-core').version('2.0-beta9')
|
||||||
|
|
||||||
// Adventure
|
// Adventure
|
||||||
version('adventure', '4.14.0-SNAPSHOT')
|
version('adventure', '4.15.0')
|
||||||
library('adventure-api', 'net.kyori', 'adventure-api').versionRef('adventure')
|
library('adventure-api', 'net.kyori', 'adventure-api').versionRef('adventure')
|
||||||
library('adventure-serializer-plain', 'net.kyori', 'adventure-text-serializer-plain').versionRef('adventure')
|
library('adventure-serializer-plain', 'net.kyori', 'adventure-text-serializer-plain').versionRef('adventure')
|
||||||
library('adventure-serializer-legacy', 'net.kyori', 'adventure-text-serializer-legacy').versionRef('adventure')
|
library('adventure-serializer-legacy', 'net.kyori', 'adventure-text-serializer-legacy').versionRef('adventure')
|
||||||
@ -125,7 +125,7 @@ dependencyResolutionManagement {
|
|||||||
library('adventure-serializer-ansi', 'net.kyori', 'adventure-text-serializer-ansi').versionRef('adventure')
|
library('adventure-serializer-ansi', 'net.kyori', 'adventure-text-serializer-ansi').versionRef('adventure')
|
||||||
|
|
||||||
// Adventure Platform
|
// Adventure Platform
|
||||||
version('adventure-platform', '4.3.0')
|
version('adventure-platform', '4.3.2')
|
||||||
library('adventure-platform-bukkit', 'net.kyori', 'adventure-platform-bukkit').versionRef('adventure-platform')
|
library('adventure-platform-bukkit', 'net.kyori', 'adventure-platform-bukkit').versionRef('adventure-platform')
|
||||||
library('adventure-platform-bungee', 'net.kyori', 'adventure-platform-bungeecord').versionRef('adventure-platform')
|
library('adventure-platform-bungee', 'net.kyori', 'adventure-platform-bungeecord').versionRef('adventure-platform')
|
||||||
library('adventure-serializer-bungee', 'net.kyori', 'adventure-text-serializer-bungeecord').versionRef('adventure-platform')
|
library('adventure-serializer-bungee', 'net.kyori', 'adventure-text-serializer-bungeecord').versionRef('adventure-platform')
|
||||||
@ -138,7 +138,7 @@ dependencyResolutionManagement {
|
|||||||
library('enhancedlegacytext', 'dev.vankka', 'enhancedlegacytext').version('2.0.0-SNAPSHOT')
|
library('enhancedlegacytext', 'dev.vankka', 'enhancedlegacytext').version('2.0.0-SNAPSHOT')
|
||||||
|
|
||||||
// JUnit
|
// JUnit
|
||||||
version('junit', '5.9.2')
|
version('junit', '5.10.0')
|
||||||
library('jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
library('jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
||||||
library('jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
|
library('jupiter-engine', 'org.junit.jupiter', 'junit-jupiter-engine').versionRef('junit')
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user