[AB-203] using task executors for the async listeners

fixing starboard post listener and service method
This commit is contained in:
Sheldan
2021-03-21 21:00:21 +01:00
parent ebed1daadc
commit 5eefc3909e
28 changed files with 305 additions and 58 deletions

View File

@@ -1,5 +1,6 @@
package dev.sheldan.abstracto.core.models;
import dev.sheldan.abstracto.core.utils.MessageUtils;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@@ -11,4 +12,8 @@ public class ServerChannelMessage {
private Long serverId;
private Long channelId;
private Long messageId;
public String getJumpUrl() {
return MessageUtils.buildMessageUrl(serverId, channelId, messageId);
}
}