Package org.redisson.api.annotation
Annotation Type RFieldAccessor
-
@Retention(RUNTIME) @Target(METHOD) public @interface RFieldAccessor
Specifies that the method is a field accessor for Live Object. Example:@RFieldAccessor public void set(String field, T value) { } @RFieldAccessor public Object get(String field) { return null; }
- Author:
- Rui Gu (https://github.com/jackygurui)