SKaiNET
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
SKaiNET
skainet-lang-models
/
sk.ainet.lang.model
/
ModelExecutionResult
Model
Execution
Result
sealed
class
ModelExecutionResult
<
out
V
>
(
source
)
Inheritors
Processing
Progress
Done
Error
Members
Types
Done
Link copied to clipboard
data
class
Done
<
out
V
>
(
val
result
:
V
)
:
ModelExecutionResult
<
V
>
Error
Link copied to clipboard
data
class
Error
(
val
message
:
String
,
val
cause
:
Throwable
?
=
null
)
:
ModelExecutionResult
<
Nothing
>
Processing
Link copied to clipboard
data
object
Processing
:
ModelExecutionResult
<
Nothing
>
Progress
Link copied to clipboard
data
class
Progress
(
val
current
:
Int
,
val
total
:
Int
,
val
message
:
String
?
=
null
)
:
ModelExecutionResult
<
Nothing
>