(fn: T)
| 113 | constructor(private xhrFactory: XhrFactory) {} |
| 114 | |
| 115 | private maybePropagateTrace<T extends Function>(fn: T): T { |
| 116 | return this.tracingService?.propagate ? this.tracingService.propagate(fn) : fn; |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Processes a request and returns a stream of response events. |