Skip to content

🚌 Google Cloud Pub Sub transport for Rebus (under development)

License

Notifications You must be signed in to change notification settings

torangel/Rebus.GoogleCloudPubSub

 
 

Repository files navigation

Rebus.GoogleCloudPubSub

install from nuget

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! 🚀


About

🚌 Google Cloud Pub Sub transport for Rebus (under development)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 94.6%
  • Batchfile 5.4%