Skip to content

Instantly share code, notes, and snippets.

@kolektiv
Created July 11, 2015 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kolektiv/bfec885e5ef9465bd13d to your computer and use it in GitHub Desktop.
Save kolektiv/bfec885e5ef9465bd13d to your computer and use it in GitHub Desktop.
Azure Service Bus
let t2 =
TopicDescription "testtopic2"
let t3 =
TopicDescription "testtopic3"
let setup =
ServiceBus.run (
ServiceBus.liftNamespace (
Namespace.Topics.create t3
*> Namespace.Topics.delete t2.Path
*> Namespace.Topics.list ()))
let res =
Async.RunSynchronously (
setup connection)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment