summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/java-stable-20060304/sca/core/src/main/java/org/apache/tuscany/core/injection/EventInvoker.java
blob: d2b95ae70e0e8dacdf666b5beb53eb73a705e1cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.apache.tuscany.core.injection;

/**
 * Performs an invocation on an instance
 *
 * @version $Rev$ $Date$
 * @see MethodEventInvoker
 */
public interface EventInvoker<T> {

    /**
     * Performs the invocation on a given instance
     *
     * @throws ObjectCallbackException
     */
    void invokeEvent(T instance) throws ObjectCallbackException;
}