Listeners
Receiving and responding to webhook events
In addition to the regular interactions system, Discord also provides a way to trigger events in your application. Webhook events are one-way events sent to your app over HTTP to notify you when an event occurs. Unlike events that are sent over Gateway connections, events sent over webhooks are not realtime or guaranteed to be in order.
In Carbon, we use Listeners to handle events from Discord. These events can include things like application authorization changes or entitlement updates.
Creating a Listener
To create a listener, extend the Listener
class and implement the required methods:
Registering Listeners
Listeners need to be registered with your Carbon client when initializing it:
Edit on GitHub
Last updated on