Procedures

Automation procedures in the Azure Service Bus BDK Book.

to receive a (message) from a queue

Receive the latest message from an Azure Service Bus queue.

Input Concepts

Concept
Description
Type
Required
Default Value

queue name

The name of the Azure Service Bus queue

text

Yes

(no default)

max wait time

Maximum time to wait for a message in seconds

number

No

(no default)

Output Concepts

Concept
Description
Type

message

The latest message received from the queue

text

Examples

Receive a message from Azure Service Bus queue

receive a message from a queue with
    the queue name is "myqueue"

Receive a message from Azure Service Bus queue with a maximum wait time of 60 seconds

receive a message from a queue with
    the queue name is "myqueue"
    the max wait time is 60

to send a message to a queue

Send a message to an Azure Service Bus queue.

Input Concepts

Concept
Description
Type
Required
Default Value

message

The message to be sent

text

Yes

(no default)

queue name

The name of the Azure Service Bus queue

text

Yes

(no default)

Examples

Send a message to an Azure Service Bus queue

send "Hello, World!" to a queue with
    the queue name is "myqueue"

Last updated

Was this helpful?