Skip to content

architecture overview

Ahmed Abbas edited this page Jun 8, 2026 · 1 revision

Architecture

The Convert Fullstack SDK is built as a set of specialized modules (called "Managers") coordinated by a central Core. Each manager handles one concern — bucketing, rules, data, API communication, etc. — and they collaborate to deliver the full experimentation workflow.

Module Dependency Map

flowchart TD
    A0["ConvertSDK / Core"]
    A1["Context"]
    A2["DataManager"]
    A3["RuleManager"]
    A4["BucketingManager"]
    A5["ApiManager"]
    A6["ExperienceManager"]
    A7["FeatureManager"]
    A8["EventManager"]
    A9["SegmentsManager"]
    A10["Config / Types"]
    A0 -- "Creates" --> A1
    A0 -- "Fetches config via" --> A5
    A0 -- "Fires events via" --> A8
    A1 -- "Runs experiments via" --> A6
    A1 -- "Runs features via" --> A7
    A1 -- "Accesses data via" --> A2
    A1 -- "Evaluates segments via" --> A9
    A1 -- "Releases queues via" --> A5
    A2 -- "Buckets via" --> A4
    A2 -- "Matches rules via" --> A3
    A2 -- "Enqueues tracking via" --> A5
    A2 -- "Fires events via" --> A8
    A2 -- "Uses types from" --> A10
    A6 -- "Gets data/buckets via" --> A2
    A7 -- "Gets data/buckets via" --> A2
    A9 -- "Matches rules via" --> A3
    A9 -- "Stores data via" --> A2
    A0 -- "Uses" --> A2
Loading

The Orchestra Conductor Analogy

Think of the ConvertSDK / Core as the conductor of an orchestra. It's the main starting point you interact with when you first use the SDK.

Just like a conductor:

  1. Gets the Music Sheet (Configuration): It takes your initial setup instructions (like your unique project key, called sdkKey) when it starts.
  2. Gathers the Musicians (Managers): It creates and organizes all the specialized helper components needed to run experiments.
  3. Starts the Performance (Initialization): It fetches the necessary experiment data from Convert servers (if you provided an sdkKey) or uses data you provide directly.
  4. Directs the Sections (Provides Context): It allows you to create specific "sessions" for each visitor, ensuring they see the correct variations and their actions are tracked properly. We call these sessions Context objects.

Core Modules

Module Role Analogy
ConvertSDK / Core Entry point. Initializes the SDK, creates managers, fetches config, provides createContext(). Orchestra conductor
Context Represents a single visitor's session. Runs experiments, features, and tracks conversions for that visitor. A visitor's personal guide
DataManager Central data store. Holds project config, coordinates bucketing, caches visitor decisions. Librarian
ExperienceManager Retrieves A/B test details and variation assignments for a visitor. A/B test director
FeatureManager Resolves feature flag status and variable values for a visitor. Feature flag controller
BucketingManager Deterministically assigns visitors to variations using MurmurHash3 hashing. Sorting Hat
RuleManager Evaluates targeting rules (audiences) and matching conditions against visitor attributes. Bouncer
ApiManager Handles HTTP communication — fetches config from CDN, batches and sends tracking events. Messenger
EventManager Internal pub/sub event system for SDK lifecycle events (Ready, Bucketing, Conversion, etc.). Announcer
SegmentsManager Evaluates and categorizes visitors into segments for reporting. Sorting desk
Config / Types Type definitions, enums, and DTOs used across all modules. Blueprint

Initialization Flow

When the SDK is initialized, this sequence unfolds:

  1. Configuration — The SDK reads the config you provided and sets defaults for unspecified options.
  2. Manager Creation — All specialized managers are instantiated and wired together.
  3. Data Fetch — If an sdkKey is present, the ApiManager fetches project configuration from Convert's CDN. If a data object is provided directly, it's used immediately (skipping the fetch).
  4. Ready State — The EventManager fires the Ready event. The SDK is now ready to create visitor contexts.
sequenceDiagram
    participant UserCode as Your Code
    participant SDK as ConvertSDK
    participant ApiMgr as ApiManager
    participant DataMgr as DataManager
    participant EventMgr as EventManager

    UserCode->>+SDK: Create SDK instance with config
    SDK->>SDK: Create all managers
    SDK->>+ApiMgr: Fetch config from CDN
    ApiMgr-->>-SDK: Return config data
    SDK->>+DataMgr: Store config data
    DataMgr-->>-SDK: Done
    SDK->>+EventMgr: Fire Ready event
    EventMgr-->>-SDK: Done
    SDK-->>-UserCode: SDK is ready
Loading

Platform-Specific Differences

While the architecture is identical across SDKs, there are platform-specific adaptations:

Aspect JavaScript SDK PHP SDK Android SDK
Initialization new ConvertSDK(config) — async, use onReady() Promise ConvertSDK::create($config) — synchronous, returns ready instance ConvertSDK.builder(context)…build() — async, use onReady { } callback
Config Refresh setTimeout for periodic background re-fetch PSR-16 cache TTL handles staleness dataRefreshInterval timer re-fetches while the app is in the foreground; last-good config cached on disk
HTTP Client Built-in fetch/XMLHttpRequest PSR-18 HTTP client (auto-discovered) OkHttp
Event Queue Flush Timer-based batching register_shutdown_function (auto-flush on script end) Timer-based batching in the foreground; flush on app background, WorkManager retry for offline events
Data Persistence Optional custom DataStore interface PSR-16 cache (dual-purpose: config + visitor data) Built-in: SharedPreferences (visitor + sticky state) and app-private files (config cache, offline event queue)
Logging Built-in LogManager PSR-3 logger integration Built-in logger with logLevel(LogLevel) builder option

Next Steps

Clone this wiki locally