Interface WebhooksUpdateListener
-
- All Superinterfaces:
GloballyAttachableListener,ObjectAttachableListener,ServerAttachableListener,ServerTextChannelAttachableListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface WebhooksUpdateListener extends ServerAttachableListener, ServerTextChannelAttachableListener, GloballyAttachableListener, ObjectAttachableListener
This listener listens to webhook updates. The event gets fired when a server channel's webhook is created, updated, or deleted.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonWebhooksUpdate(WebhooksUpdateEvent event)This method is called every time the webhooks of a channel get updated.
-
-
-
Method Detail
-
onWebhooksUpdate
void onWebhooksUpdate(WebhooksUpdateEvent event)
This method is called every time the webhooks of a channel get updated.- Parameters:
event- The event.
-
-