Interface IConnectorStoreProviderExtension
public interface IConnectorStoreProviderExtension
Defines the contract for extensions that provide and manage a connector store. A connector store
is a collection of connectors that define how to interact with different data sources, services, or protocols.
Implementations of this interface are responsible for loading the connector store and providing access to it.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves the loaded connector store.voidload()Loads the connector store into memory.
-
Method Details
-
load
void load()Loads the connector store into memory. This method initializes connector store, making it ready for use. -
getConnectorStore
ConnectorStore getConnectorStore()Retrieves the loaded connector store.- Returns:
- A
ConnectorStoreinstance containing the connectors to be used by the engine. The returned connector store is expected to be fully initialized and ready for use.
-