(authority: string, host: string, port: number)
| 202 | } |
| 203 | |
| 204 | set(authority: string, host: string, port: number): void { |
| 205 | this._hosts[authority] = host; |
| 206 | this._ports[authority] = port; |
| 207 | } |
| 208 | |
| 209 | setConnectionToken(authority: string, connectionToken: string): void { |
| 210 | this._connectionTokens[authority] = connectionToken; |
no outgoing calls
no test coverage detected