I'd love for there to be a mechanism to set up perpetual pulling and acknowledging of Cloud Pub/Sub messages, the sort of thing that might enable code like this:
# Messages are acknowledged unless DoWork raises an exception
def DoWork(message):
print "Message payload: %s" % message.payload
worker_thread = subscription.pull(callback=DoWork)
I'd love for there to be a mechanism to set up perpetual pulling and acknowledging of Cloud Pub/Sub messages, the sort of thing that might enable code like this: