rd-framework
Toggle table of contents
2026.1.1
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
rd-framework
rd-framework
/
com.jetbrains.rd.framework
/
RdTaskResult
Rd
Task
Result
sealed
class
RdTaskResult
<
out
T
>
The result of asynchronously executing a task.
Inheritors
Success
Cancelled
Fault
Members
Types
Cancelled
Link copied to clipboard
class
Cancelled
<
out
T
>
:
RdTaskResult
<
T
>
Companion
Link copied to clipboard
object
Companion
Fault
Link copied to clipboard
class
Fault
<
out
T
>
:
RdTaskResult
<
T
>
Success
Link copied to clipboard
class
Success
<
out
T
>
(
val
value
:
T
)
:
RdTaskResult
<
T
>
Functions
map
Link copied to clipboard
inline
fun
<
R
>
map
(
transform
:
(
T
)
->
R
)
:
RdTaskResult
<
R
>
to
String
Link copied to clipboard
open
override
fun
toString
(
)
:
String
unwrap
Link copied to clipboard
fun
unwrap
(
)
:
T