* Get the name of the next callback method, by incrementing the global `nextRequestId`.
()
| 118 | * Get the name of the next callback method, by incrementing the global `nextRequestId`. |
| 119 | */ |
| 120 | private nextCallback(): string { |
| 121 | return `ng_jsonp_callback_${nextRequestId++}`; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Processes a JSONP request and returns an event stream of the results. |