retrieveConnectorAsync method

Future<SealdConnector> retrieveConnectorAsync(
  1. String connectorId
)

Retrieve a connector by its connectorId, then updates the local cache of connectors.

connectorId - The ID of the connector to retrieve. Returns the retrieved SealdConnector instance.

Implementation

Future<SealdConnector> retrieveConnectorAsync(String connectorId) {
  return compute(retrieveConnector, connectorId);
}