Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Simplify usage of ListenerService API - MEED-7009 - Meeds-io/meeds#2116 #64

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,6 @@
* @author <a href="mailto:nhudinhthuan@exoplatform.com">Nhu Dinh Thuan</a>
* @LevelAPI Platform
*/
public abstract class Listener<S, D> extends BaseComponentPlugin
{

/**
* This method should be invoked when an event with the same name is
* broadcasted
* @param event the event instance
*/
public abstract void onEvent(Event<S, D> event) throws Exception;
public abstract class Listener<S, D> extends BaseComponentPlugin implements ListenerBase<S, D> {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* This file is part of the Meeds project (https://meeds.io/).
*
* Copyright (C) 2020 - 2024 Meeds Association contact@meeds.io
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.exoplatform.services.listener;

/**
* Created by The eXo Platform SAS<br>
* This class is registered with the Listener service and is invoked when an
* event with the same name is broadcasted. You can have many listeners with the
* same name to listen to an event.
*
* @author <a href="mailto:nhudinhthuan@exoplatform.com">Nhu Dinh Thuan</a>
* @LevelAPI Platform
*/
@FunctionalInterface
public interface ListenerBase<S, D> {

/**
* This method should be invoked when an event with the same name is
* broadcasted
*
* @param event the event instance
*/
void onEvent(Event<S, D> event) throws Exception;

default String getName() {
return this.getClass().getName();
}

}
Loading