* Get the name of the next callback method, by incrementing the global `nextRequestId`.
()
| 110 | * Get the name of the next callback method, by incrementing the global `nextRequestId`. |
| 111 | */ |
| 112 | private nextCallback(): string { |
| 113 | return `ng_jsonp_callback_${nextRequestId++}`; |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Processes a JSONP request and returns an event stream of the results. |