Package jadex.bridge.service.types.cms
Interface IBootstrapFactory
-
- All Superinterfaces:
IComponentFactory
- All Known Implementing Classes:
BDIAgentFactory,BDIXComponentFactory,BpmnFactory,MicroAgentFactory,MicroserviceFactory
public interface IBootstrapFactory extends IComponentFactory
Interface for bootstrap component factories, i.e. factories that are used at startup time of the platform.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<java.lang.Void>startService(IInternalAccess component, IResourceIdentifier rid)Start the service.-
Methods inherited from interface jadex.bridge.service.types.factory.IComponentFactory
getComponentFeatures, getComponentType, getComponentTypeIcon, getComponentTypes, getProperties, isLoadable, isStartable, loadModel
-
-
-
-
Method Detail
-
startService
IFuture<java.lang.Void> startService(IInternalAccess component, IResourceIdentifier rid)
Start the service. Is called via the component management service startup. Allows to initialize the service with a valid service provider.- Parameters:
component- The component.rid- The resource identifier.
-
-