File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -80,25 +80,32 @@ export abstract class OdpManager implements IOdpManager {
80
80
/**
81
81
* ODP Segment Manager which provides an interface to the remote ODP server (GraphQL API) for audience segments mapping.
82
82
* It fetches all qualified segments for the given user context and manages the segments cache for all user contexts.
83
+ * @private
84
+ * @readonly
83
85
*/
84
- private segmentManager : IOdpSegmentManager ;
86
+ private readonly segmentManager : IOdpSegmentManager ;
85
87
86
88
/**
87
89
* ODP Event Manager which provides an interface to the remote ODP server (REST API) for events.
88
90
* It will queue all pending events (persistent) and send them (in batches of up to 10 events) to the ODP server when possible.
91
+ * @protected
92
+ * @readonly
89
93
*/
90
94
protected readonly eventManager : IOdpEventManager ;
91
95
92
96
/**
93
97
* Handler for recording execution logs
94
98
* @protected
99
+ * @readonly
95
100
*/
96
- protected logger : LogHandler ;
101
+ protected readonly logger : LogHandler ;
97
102
98
103
/**
99
104
* ODP configuration settings for identifying the target API and segments
105
+ * @protected
106
+ * @readonly
100
107
*/
101
- protected odpIntegrationConfig ?: OdpIntegrationConfig ;
108
+ protected readonly odpIntegrationConfig ?: OdpIntegrationConfig ;
102
109
103
110
constructor ( {
104
111
odpIntegrationConfig,
You can’t perform that action at this time.
0 commit comments