KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > proactive > core > event > RuntimeRegistrationEventListener


1 package org.objectweb.proactive.core.event;
2
3
4
5 /**
6  * <p>
7  * A class implementating this interface is listener of <code>RuntimeRegistrationEvent</code>.
8  * </p>
9  *
10  * @see RuntimeRegistrationEvent
11  * @author ProActive Team
12  * @version 1.0, 2002/08/06
13  * @since ProActive 0.9.4
14  *
15  */

16
17 public interface RuntimeRegistrationEventListener extends ProActiveListener
18 {
19     /**
20      * Signals that a registration occured on the runtime encapsulated in the event
21      * @param event the creation event that details the registration on the runtime
22      */

23     public void runtimeRegistered(RuntimeRegistrationEvent event) ;
24
25 }
26
Popular Tags