Show / Hide Table of Contents

Interface IProcessingEngineFactory

Responsible for creation of IProcessingEngine.

Namespace: OpenText.Fusion.AdapterSdk.Api
Assembly: OpenText.Fusion.AdapterSdk.Api.dll
Syntax
public interface IProcessingEngineFactory

Methods

CreateEngine()

Creates the engine.

Declaration
IProcessingEngine CreateEngine()
Returns
Type Description
IProcessingEngine

A configured IProcessingEngine instance.

Remarks

Creates an instance of the core component of the Adapter SDK, the IProcessingEngine.

Examples
var engineFactory = ProcessingEngineFactoryConfigurator.Current
                                                   .BuildConfigured(new MyAdapter(),
                                                                    (collection, configuration) => collection.AddSingleton<IMyService, MyServiceImpl>());
var processingEngine = engineFactory.CreateEngine();
In This Article
Back to top Generated by DocFX