01: package org.objectweb.celtix.jbi;
02:
03: import javax.jbi.component.ComponentContext;
04:
05: /**
06: * Defines a service consumer to be started by the Celtix Service
07: * Engine.
08: *
09: */
10: public interface ServiceConsumer extends Runnable {
11:
12: void stop();
13:
14: void setComponentContext(ComponentContext componentCtx);
15:
16: }
|