toggle menu
sdk-java
2.5.0-SNAPSHOT
jvm
switch theme
search in API
client
/
dev.restate.client
/
Client
/
InvocationHandle
Invocation
Handle
interface
InvocationHandle
<
Res
>
Inheritors
SendResponse
Members
Functions
attach
Link copied to clipboard
open
fun
attach
(
)
:
Response
<
Res
>
Attach to a running invocation, waiting for its output.
open
fun
attach
(
options
:
RequestOptions
)
:
Response
<
Res
>
Like
attach
, with request options.
attach
Async
Link copied to clipboard
open
fun
attachAsync
(
)
:
CompletableFuture
<
Response
<
Res
>
>
Future version of
attach
abstract
fun
attachAsync
(
options
:
RequestOptions
)
:
CompletableFuture
<
Response
<
Res
>
>
Future version of
attach
, with options.
get
Output
Link copied to clipboard
open
fun
getOutput
(
)
:
Response
<
Output
<
Res
>
>
Get the output of an invocation.
open
fun
getOutput
(
options
:
RequestOptions
)
:
Response
<
Output
<
Res
>
>
Like
getOutput
, with request options.
get
Output
Async
Link copied to clipboard
open
fun
getOutputAsync
(
)
:
CompletableFuture
<
Response
<
Output
<
Res
>
>
>
Future version of
getOutput
abstract
fun
getOutputAsync
(
options
:
RequestOptions
)
:
CompletableFuture
<
Response
<
Output
<
Res
>
>
>
Future version of
getOutput
, with options.
invocation
Id
Link copied to clipboard
abstract
fun
invocationId
(
)
:
String