[Python - Beam SDK]
I would like to be able to test timing issues in integration tests, so I want to build a generator system that pipes in messages into my Beam application with timestamps I specify. My current idea is to an application write to ports (one for each stream I want to listen to), and then have the Beam application listen to these ports (the same way it would listen to a Kafka topic).
Does Beam already have the ability to listen to a port as a source? And if not, what would be the best way to make this?