...

Source file src/github.com/launchdarkly/go-server-sdk/v6/internal/client_context_impl.go

Documentation: github.com/launchdarkly/go-server-sdk/v6/internal

     1  package internal
     2  
     3  import (
     4  	ldevents "github.com/launchdarkly/go-sdk-events/v2"
     5  	"github.com/launchdarkly/go-server-sdk/v6/subsystems"
     6  )
     7  
     8  // ClientContextImpl is the SDK's standard implementation of interfaces.ClientContext.
     9  type ClientContextImpl struct {
    10  	subsystems.BasicClientContext
    11  	// Used internally to share a diagnosticsManager instance between components.
    12  	DiagnosticsManager *ldevents.DiagnosticsManager
    13  }
    14  

View as plain text