* Add an event processor that will be called before an event is sent.
(callback: EventProcessor)
| 257 | * Add an event processor that will be called before an event is sent. |
| 258 | */ |
| 259 | public addEventProcessor(callback: EventProcessor): this { |
| 260 | this._eventProcessors.push(callback); |
| 261 | return this; |
| 262 | } |
| 263 | |
| 264 | /** |
| 265 | * Set the user for this scope. |
no test coverage detected