NamedFunctionInfoData

data class NamedFunctionInfoData(val contextName: String, val processorName: String, val name: String) : NamedFunctionInfo, Materialized

Immutable data class representing named function information.

This class provides a concrete, serializable implementation of NamedFunctionInfo, containing the essential metadata needed to identify a function within its processor and context. It implements Materialized for efficient storage and transmission.

Constructors

Link copied to clipboard
constructor(contextName: String, processorName: String, name: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val contextName: String

The name of the bounded context this function belongs to

Link copied to clipboard
open override val name: String

The unique name of the function within its processor

Link copied to clipboard
open override val processorName: String

The name of the processor that handles this function