toggle menu
jellyfin-sdk-kotlin
latest-SNAPSHOT
jvmCommon
switch theme
search in API
jellyfin-core
/
org.jellyfin.sdk.compatibility
/
JavaContinuation
Java
Continuation
jvmCommon
abstract
class
JavaContinuation
<
T
>
:
Continuation
<
T
>
Members
Constructors
Java
Continuation
Link copied to clipboard
jvmCommon
constructor
(
)
Properties
context
Link copied to clipboard
jvmCommon
open
override
val
context
:
CoroutineContext
Functions
on
Error
Link copied to clipboard
jvmCommon
open
fun
onError
(
error
:
Throwable
)
on
Success
Link copied to clipboard
jvmCommon
abstract
fun
onSuccess
(
result
:
T
)
resume
With
Link copied to clipboard
jvmCommon
open
override
fun
resumeWith
(
result
:
Result
<
T
>
)