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

nz.ac.auckland.syllabus.hooks.EventHookInitializer.groovy Maven / Gradle / Ivy

Go to download

Overly complicated protocol-agnostic transmission layer for an event-based API implementation

There is a newer version: 3.2
Show newest version
package nz.ac.auckland.syllabus.hooks

import nz.ac.auckland.syllabus.events.EventHandler

/**
 * User: marnix
 * Date: 3/04/13
 * Time: 1:11 PM
 *
 * Is an interface that will be invoked when present on EventHook instance.
 */
interface EventHookInitializer {

	/**
	 * Called with a list of all event handlers that might need some sort of initialization
	 *
	 * @param eventHandlerList is a list of event handlers
	 */
	public void initializeHook(List eventHandlerList) throws EventHookException

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy