(httpAdapter: any)
| 72 | } |
| 73 | |
| 74 | public setHttpAdapter(httpAdapter: any) { |
| 75 | this.internalProvidersStorage.httpAdapter = httpAdapter; |
| 76 | |
| 77 | if (!this.internalProvidersStorage.httpAdapterHost) { |
| 78 | return; |
| 79 | } |
| 80 | const host = this.internalProvidersStorage.httpAdapterHost; |
| 81 | host.httpAdapter = httpAdapter; |
| 82 | } |
| 83 | |
| 84 | public getHttpAdapterRef() { |
| 85 | return this.internalProvidersStorage.httpAdapter; |
no outgoing calls