Package org.apache.ignite.platform
Annotation Type PlatformServiceMethod
-
@Documented @Retention(RUNTIME) @Target(METHOD) public @interface PlatformServiceMethod
Annotation for setting mapping between java interface's method and platform service's method. Platform service method name is defined invalue()
For example, this annotated java inerface method:@PlatformServiceMethod("SomeMethod") Object someMethod(Object[] args)
will be mapped toSomeMethod
, for example (.NET service):object SomeMethod(object[] args)
-
-
Element Detail
-
value
String value
- Returns:
- Method name in corresponding platform service.
-
-