rd-framework
2024.3.0
rd-framework
/
com.jetbrains.rd.framework
/
RdTaskResult
Rd
Task
Result
sealed
class
RdTaskResult
<
out
T
>
Content copied to clipboard
The result of asynchronously executing a task.
Types
Functions
Inheritors
Types
Cancelled
Link copied to clipboard
class
Cancelled
<
out
T
>
:
RdTaskResult
<
T
>
Content copied to clipboard
Companion
Link copied to clipboard
object
Companion
Content copied to clipboard
Fault
Link copied to clipboard
class
Fault
<
out
T
>
:
RdTaskResult
<
T
>
Content copied to clipboard
Success
Link copied to clipboard
class
Success
<
out
T
>
(
val
value
:
T
)
:
RdTaskResult
<
T
>
Content copied to clipboard
Functions
map
Link copied to clipboard
inline
fun
<
R
>
map
(
transform
:
(
T
)
->
R
)
:
RdTaskResult
<
R
>
Content copied to clipboard
to
String
Link copied to clipboard
open
override
fun
toString
(
)
:
String
Content copied to clipboard
unwrap
Link copied to clipboard
fun
unwrap
(
)
:
T
Content copied to clipboard
Inheritors
Success
Link copied to clipboard
Cancelled
Link copied to clipboard
Fault
Link copied to clipboard