* Immediately parse a complete chunk of XML and close the stream. * * @param input Input chunk.
(input: Buffer | string)
| 441 | * @param input Input chunk. |
| 442 | */ |
| 443 | public parse(input: Buffer | string): this { |
| 444 | this.end(input) |
| 445 | return this |
| 446 | } |
| 447 | |
| 448 | /** |
| 449 | * Put the stream into waiting mode, which means we need more data |
no outgoing calls