JavaScript is disabled on your browser.
Skip navigation links
Package
Class
Tree
Index
Search
Help
org.graalvm.nativebridge
Idempotent
Contents
Hide sidebar
❮
❯
Show sidebar
Description
Annotation Interface Idempotent
@Retention
(
CLASS
)
@Target
({
METHOD
,
TYPE
})
public @interface
Idempotent
Enables the return value caching. The annotated method is called only once, the returned value is cached and the successive calls return the cached value. The annotated method must have a non-void return type.