Package org.apache.ignite.lang
Annotation Type IgniteAsyncSupported
-
@Documented @Retention(RUNTIME) @Target(METHOD) @Deprecated public @interface IgniteAsyncSupported
Deprecated.since 2.0. Please use specialized asynchronous methods.Annotation to indicate that method can be executed asynchronously if async mode is enabled. To enable async mode, invokeIgniteAsyncSupport.withAsync()
method on the API. The future for the async method can be retrieved viaIgniteAsyncSupport.future()
method right after the execution of an asynchronous method. TODO coding example.- See Also:
IgniteAsyncSupport