azure-servicebus-0.1.0.1: Windows Azure ServiceBus API

StabilityExperimental
Maintainersaihemanth@gmail.com
Safe HaskellNone

Web.WindowsAzure.ServiceBus.SBTypes

Contents

Description

 

Synopsis

Types

data SBInfo Source

SBInfo is encapsulation of Connection Information needed to connect to a Service Bus Namespace.

This information is typically found when you click on the Connection Information link on the azure portal and comprises of

  • ServiceBus namespace * Issuer Name * Issuer Key

Instances

data SBContext Source

Abstract type representing the service bus context.

initialization

sbContext :: SBInfo -> IO SBContextSource

Create SB Context from SBInfo

simpleSBInfo :: String -> String -> SBInfoSource

a convenience function, where issuer name is owner

low-level functions for creating Request

enQueueRequest :: String -> RequestBody -> SBContext -> IO ()Source

Internal low-level method for performing HTTP calls.

should be avoided by most users.

deQueueRequest :: String -> Int -> SBContext -> IO ByteStringSource

Internal low-level method for creating the HTTP calls. For internal use.

should be avoided by most users