Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

Documentation

Please see the main ASL documentation

Description

A high level Connection Provider allowing multiple different protocols and connection types to be used by the same system with minimal complexity.

Goal and usage

How to?

Initialize a default Provider for Nexo

Code Block
breakoutModewide
languagecpp
// The provider requires an InputStream on the SSL certificates that can be used by the connection provider
InputStream caFileStream = getAssets().open("nexoCaFile.pem");

// Instanciates a default provider with Nexo functionality
UnifiedConnectionProvider transmitProvider = UnifiedConnectionProvider.DefaultNexoProvider(caFileStream);

...