PipelineChannel

data class PipelineChannel(val channelName: String, val name: String, val next: String? = null)

Constructors

Link copied to clipboard
constructor(channelName: String, name: String, next: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The name of the channel from which the messages are processed.

Link copied to clipboard

The name of the 'channel' activity.

Link copied to clipboard
val next: String? = null

The next activity in the pipeline.