Provides a Google Cloud Pub/Sub-based transport implementation for Rebus.
It's just
// ensure that the GOOGLE_APPLICATION_CREDENTIALS
// environment variable has been set, and then:
Configure.With(...)
.Transport(t => t.UsePubSub("your_queue"))
.(...)
.Start();
or
// ensure that the GOOGLE_APPLICATION_CREDENTIALS
// environment variable has been set, and then:
var bus = Configure.With(...)
.Transport(t => t.UsePubSubAsOneWayClient())
.(...)
.Start();
and off you go! 🚀