Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    Module webview/services/serviceManagerFactory

    // Create mock service manager
    const mockManager = ServiceManagerFactory.create({ type: 'mock' });

    // Create local kernel service manager
    const localManager = ServiceManagerFactory.create({
    type: 'local',
    kernelId: 'kernel-123',
    kernelName: 'python3',
    url: 'http://localhost:8888'
    });

    // Create remote service manager
    const remoteManager = ServiceManagerFactory.create({
    type: 'remote',
    serverSettings: { baseUrl: 'http://localhost:8888', ... }
    });

    Classes

    ServiceManagerFactory

    Interfaces

    LocalServiceManagerOptions
    MockServiceManagerOptions
    PyodideServiceManagerOptions
    RemoteServiceManagerOptions

    Type Aliases

    ServiceManagerOptions
    ServiceManagerType