Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SMILA/Documentation/ConnectivityManager

< SMILA‎ | Documentation
Revision as of 03:51, 5 September 2011 by Unnamed Poltroon (Talk) (Implementations)

Overview

The Connectivity Manager is the single point of entry for data in the SMILA. It's functionality is divided into several Sub-Components for better modularization. The Connectivity Manager and its Sub-Components are implemented as Java OSGi services.

API

See javadoc: org.eclipse.smila.connectivity.ConnectivityManager

Implementations

It is possible to provide different implementations for the ConnectivityManager interface. At the moment there is only one implementation available:

org.eclipse.smila.connectivity.bulkbuilder

This bundle contains the default implementation of the ConnectivityManager interface. It is based on the routing of records to asynchronous workflows resp. jobs (see Jobmanager). Therefore the records are pushed to the Bulkbuilder.

The ConnectivityManagerImpl contains the core execution logic as it does the actual processing of the incoming requests. Incoming Record objects are pushed to the Bulkbuilder via record and micro bulk API.

This chart shows the Connectivity Manager implementation, it's Sub-Components and the relationship to other components: ConnectivityManager.png


Configuration

There are no configuration options available for this bundle.

Back to the top