Right now, the file out.txtis already "waiting and appending indefinitely". Next time, any time, you append output to it, the file will be there and take your output.
It is the redirection symbol >> that indicates that any data send to the file should be appended. If instead you would be using >, then any data you send to the file would replace the contents that may have been in the file.
Just pausing a terminal command may cause the operating system to "close" the file, in a sense that it finalizes the current state of the file in the file system, but that does not close the connection of the paused command to the file. Once that command is resumed, writing to the file will be continued.
If you exit the command, or it is aborted (or crashes), both the connection of the program to the file and the file itself will be closed. When you start the command again, the connection with the file will be established, and because of the >> symbol, additional input will be appended to the file.
I do not see the need of having something that would "stop" it receiving input. In fact, it already stopped accepting input as soon as no data is (anymore) been send. As soon as you give it new input, it will continue to accept input. Anytime.