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

org.hibernate.event.service.spi.EventListenerGroup Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.event.service.spi;

import java.io.Serializable;
import java.util.Map;
import java.util.function.BiConsumer;
import java.util.function.Supplier;

import org.hibernate.Incubating;
import org.hibernate.event.spi.EventType;

/**
 * Contract for a groups of events listeners for a particular event type.
 *
 * @author Steve Ebersole
 */
public interface EventListenerGroup extends Serializable {

	/**
	 * Retrieve the event type associated with this groups of listeners.
	 *
	 * @return The event type.
	 */
	public EventType getEventType();

	/**
	 * Are there no listeners registered?
	 *
	 * @return {@literal true} if no listeners are registered; {@literal false} otherwise.
	 */
	public boolean isEmpty();

	public int count();

	/**
	 * @deprecated this is not the most efficient way for iterating the event listeners.
	 * See {@link #fireEventOnEachListener(Object, BiConsumer)} and its overloaded variants for better alternatives.
	 * @return The Iterable.
	 */
	@Deprecated
	public Iterable listeners();

	/**
	 * Mechanism to more finely control the notion of duplicates.
	 * 

* For example, say you are registering listeners for an extension library. This extension library * could define a "marker interface" which indicates listeners related to it and register a strategy * that checks against that marker interface. * * @param strategy The duplication strategy */ public void addDuplicationStrategy(DuplicationStrategy strategy); public void appendListener(T listener); public void appendListeners(T... listeners); public void prependListener(T listener); public void prependListeners(T... listeners); public void clear(); /** * Fires an event on each registered event listener of this group. * * Implementation note (performance): * the first argument is a supplier so that events can avoid allocation when no listener is registered. * the second argument is specifically designed to avoid needing a capturing lambda. * * @param eventSupplier * @param actionOnEvent * @param the kind of event */ @Incubating void fireLazyEventOnEachListener(final Supplier eventSupplier, final BiConsumer actionOnEvent); /** * Similar as {@link #fireLazyEventOnEachListener(Supplier, BiConsumer)} except it doesn't use a {{@link Supplier}}: * useful when there is no need to lazily initialize the event. * @param event * @param actionOnEvent * @param the kind of event */ @Incubating void fireEventOnEachListener(final U event, final BiConsumer actionOnEvent); @Incubating void fireEventOnEachListener(final U event, X param, final EventActionWithParameter actionOnEvent); }