For the complete documentation index, see llms.txt. This page is also available as Markdown.

Send

Reads text and replaces substrings matching with specified regular expression.

Task version: 1.3.0

Required Frends version: 5.5+

Required .NET version: 6.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

Messages : EventHubMessage[]

Messages to be sent to Event Hub

Default: - Example: [ { Message = "Hello" }, { Message = "World } ]

🗝ConnectionString : String

Event Hub connection string.

Default: - Example: my-event-hub

Name
Description

MaximumRetries : Int32

The maximum number of retry attempts. Must be a value between 0 and 100.

Default: 3 Example: 3

MaximumDelayInMilliseconds : Int32

The delay between retry attempts. Must be a value between 1 millisecond and 5 minutes inclusive.

Default: 800 Example: 800

DelayInMilliseconds : Int32

The maximum delay between retry attempts (e.g. for exponential backoff).

Default: 60000 Example: 5000

TryTimeoutInMilliseconds : Int32

The maximum duration to wait for completion of a single attempt.

Default: 60000 Example: 5000

RetryMode : RetryMode

The retry mode to use.

Possible values:

  • Fixed: The retry mode to use.

  • Exponential: The retry mode to use.

Default: 1 Example: Exponential

TransportType : TransportType

The transport type to use.

Possible values:

  • AmqpTcp: The transport type to use.

  • AmqpWebSockets: The transport type to use.

Default: - Example: -

Task Result

Name
Description

Success : Boolean

Indicates whether the messages were sent successfully. Example: true

Message : String

Message indicating the result of the operation. Example: A batch of 5 events has been published.

Task Changelog

Changelog is not available for this Task.

Last updated

Was this helpful?