All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dv8tion.jda.api.hooks.IEventManager Maven / Gradle / Ivy

Go to download

Java wrapper for the popular chat & VOIP service: Discord https://discord.com

There is a newer version: 5.1.0
Show newest version
/*
 * Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package net.dv8tion.jda.api.hooks;

import net.dv8tion.jda.api.events.GenericEvent;

import javax.annotation.Nonnull;
import java.util.List;

/**
 * An interface for JDA's EventManager system.
 * 
This should be registered in the {@link net.dv8tion.jda.api.JDABuilder JDABuilder} * *

JDA provides 2 implementations: *

    *
  • {@link net.dv8tion.jda.api.hooks.InterfacedEventManager InterfacedEventManager} *
    Simple implementation that allows {@link net.dv8tion.jda.api.hooks.EventListener EventListener} * instances as listeners.
  • * *
  • {@link net.dv8tion.jda.api.hooks.AnnotatedEventManager AnnotatedEventManager} *
    An implementation that accepts any object and uses the {@link net.dv8tion.jda.api.hooks.SubscribeEvent SubscribeEvent} * annotation to handle events.
  • *
* *

The default event manager is {@link net.dv8tion.jda.api.hooks.InterfacedEventManager InterfacedEventManager} *
Use {@link net.dv8tion.jda.api.JDABuilder#setEventManager(IEventManager) JDABuilder.setEventManager(IEventManager)} * to set the preferred event manager implementation. *
You can only use one implementation per JDA instance! * * @see net.dv8tion.jda.api.hooks.InterfacedEventManager * @see net.dv8tion.jda.api.hooks.AnnotatedEventManager */ public interface IEventManager { /** * Registers the specified listener *
Accepted types may be specified by implementations * * @param listener * A listener object * * @throws java.lang.UnsupportedOperationException * If the implementation does not support this method */ void register(@Nonnull Object listener); /** * Removes the specified listener * * @param listener * The listener object to remove * * @throws java.lang.UnsupportedOperationException * If the implementation does not support this method */ void unregister(@Nonnull Object listener); /** * Handles the provided {@link net.dv8tion.jda.api.events.GenericEvent GenericEvent}. *
How this is handled is specified by the implementation. * *

An implementation should not throw exceptions. * * @param event * The event to handle */ void handle(@Nonnull GenericEvent event); /** * The currently registered listeners * * @throws java.lang.UnsupportedOperationException * If the implementation does not support this method * * @return A list of listeners that have already been registered */ @Nonnull List getRegisteredListeners(); }