JavaScript is disabled on your browser.
Skip navigation links
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Summary:
Nested
Field
Constr
Method
Detail:
Field
Constr
Method
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
SEARCH
Package
dev.webfx.platform.async
Interface AsyncFunction<A,
R>
All Superinterfaces:
Function
<A,
Future
<R>>
public interface
AsyncFunction<A,
R>
extends
Function
<A,
Future
<R>>
A functional interface for asynchronous operations that take one argument and return a future result.
Author:
Bruno Salmon
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method
Description
Future
<
R
>
apply
(
A
arg)
Methods inherited from interface java.util.function.
Function
andThen
,
compose
Method Details
apply
Future
<
R
>
apply
(
A
arg)
Specified by:
apply
in interface
Function
<
A
,
R
>