Connector

interface Connector<T : Action>

Interface representing a connector that can invoke actions and handle shutdowns.

Parameters

T

The type of action that the connector can handle.

Functions

Link copied to clipboard
abstract suspend fun invoke(planId: UUID, action: T): ExecutorResult

Invokes the specified action for the given plan ID.

Link copied to clipboard
abstract suspend fun shutdown()

Shuts down the connector.