PluginDescriptor
data class PluginDescriptor(val pluginId: String, val version: String, val displayName: String, val defaultRuntimeMode: PluginRuntimeMode = PluginRuntimeMode.IN_PROCESS, val communicationStrategy: JvmCommunicationStrategy = JvmCommunicationStrategy.DEFAULT, val supportedRuntimeModes: Set<PluginRuntimeMode> = setOf(
PluginRuntimeMode.IN_PROCESS,
PluginRuntimeMode.EXTERNAL_JVM
), val supportedServices: Set<PluginServiceType> = setOf(
PluginServiceType.ENDPOINT,
PluginServiceType.SSE,
PluginServiceType.STATIC_RESOURCE
), val recoveryPolicy: PluginRecoveryPolicy = PluginRecoveryPolicy(), val startupTimeoutMs: Long = 5000, val callTimeoutMs: Long = 3000, val stopTimeoutMs: Long = 3000, val healthCheckIntervalMs: Long = 10000, val maxConcurrentCalls: Int = 128, val eventLogRingBufferSize: Int = 4096, val criticalEventQueueSize: Int = 256)(source)
Constructors
Link copied to clipboard
constructor(pluginId: String, version: String, displayName: String, defaultRuntimeMode: PluginRuntimeMode = PluginRuntimeMode.IN_PROCESS, communicationStrategy: JvmCommunicationStrategy = JvmCommunicationStrategy.DEFAULT, supportedRuntimeModes: Set<PluginRuntimeMode> = setOf(
PluginRuntimeMode.IN_PROCESS,
PluginRuntimeMode.EXTERNAL_JVM
), supportedServices: Set<PluginServiceType> = setOf(
PluginServiceType.ENDPOINT,
PluginServiceType.SSE,
PluginServiceType.STATIC_RESOURCE
), recoveryPolicy: PluginRecoveryPolicy = PluginRecoveryPolicy(), startupTimeoutMs: Long = 5000, callTimeoutMs: Long = 3000, stopTimeoutMs: Long = 3000, healthCheckIntervalMs: Long = 10000, maxConcurrentCalls: Int = 128, eventLogRingBufferSize: Int = 4096, criticalEventQueueSize: Int = 256)
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard