Documentation ¶
Overview ¶
Package eppoclient provides client for eppo.cloud. Check InitClient to get started.
Index ¶
Constants ¶
View Source
const MAX_CACHE_ENTRIES = 1000 // arbitrary; the caching library requires a max limit
View Source
const RAC_ENDPOINT = "/randomized_assignment/v3/config"
View Source
const REQUEST_TIMEOUT_SECONDS = time.Duration(10 * time.Second)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Allocation ¶ added in v1.1.0
type AssignmentEvent ¶ added in v1.0.2
type AssignmentLogger ¶
type AssignmentLogger struct { }
func (*AssignmentLogger) LogAssignment ¶
func (al *AssignmentLogger) LogAssignment(event AssignmentEvent)
type Config ¶
type Config struct { BaseUrl string ApiKey string AssignmentLogger IAssignmentLogger }
type EppoClient ¶
type EppoClient struct {
// contains filtered or unexported fields
}
Client for eppo.cloud. Instance of this struct will be created on calling InitClient. EppoClient will then immediately start polling experiments data from Eppo.
func InitClient ¶
func InitClient(config Config) *EppoClient
InitClient is required to start polling of experiments configurations and create an instance of EppoClient, which could be used to get assignments information.
func (*EppoClient) GetAssignment ¶
func (ec *EppoClient) GetAssignment(subjectKey string, flagKey string, subjectAttributes dictionary) (string, error)
type IAssignmentLogger ¶
type IAssignmentLogger interface {
LogAssignment(event AssignmentEvent)
}
func NewAssignmentLogger ¶
func NewAssignmentLogger() IAssignmentLogger
type Value ¶ added in v1.1.0
type Value struct {
// contains filtered or unexported fields
}
func (Value) StringValue ¶ added in v1.1.0
func (*Value) UnmarshalJSON ¶ added in v1.1.0
Click to show internal directories.
Click to hide internal directories.