Package-level declarations

Types

Link copied to clipboard

Raised when an agent process cannot be checkpointed or restored.

Link copied to clipboard
data class BlackboardEntryDeserializationContext(val processId: String? = null, val key: String? = null, val entrySequence: Long? = null, val metadata: Map<String, String> = emptyMap())

Context available while restoring a single blackboard entry.

Link copied to clipboard
data class BlackboardEntrySerializationContext(val processId: String? = null, val key: String? = null, val entrySequence: Long? = null, val metadata: Map<String, String> = emptyMap())

Context available while serializing a single blackboard entry.

Link copied to clipboard

Extension point for application-specific blackboard persistence.

Link copied to clipboard
data class SerializedBlackboardValue(val typeName: String, val contentType: String, val payload: ByteArray, val metadata: Map<String, String> = emptyMap())

Serialized representation of a blackboard value.