Package org.redisson.liveobject.resolver
Class LongGenerator
- java.lang.Object
-
- org.redisson.liveobject.resolver.LongGenerator
-
- All Implemented Interfaces:
RIdResolver<Long>
public class LongGenerator extends Object implements RIdResolver<Long>
- Author:
- Rui Gu (https://github.com/jackygurui)
-
-
Field Summary
Fields Modifier and Type Field Description static LongGenerator
INSTANCE
-
Constructor Summary
Constructors Constructor Description LongGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
resolve(Class<?> value, RId id, String idFieldName, CommandAsyncExecutor commandAsyncExecutor)
RLiveObjectService instantiate the class and invokes this method to get a value used as the value for the field with RId annotation.
-
-
-
Field Detail
-
INSTANCE
public static final LongGenerator INSTANCE
-
-
Method Detail
-
resolve
public Long resolve(Class<?> value, RId id, String idFieldName, CommandAsyncExecutor commandAsyncExecutor)
Description copied from interface:RIdResolver
RLiveObjectService instantiate the class and invokes this method to get a value used as the value for the field with RId annotation.- Specified by:
resolve
in interfaceRIdResolver<Long>
- Parameters:
value
- the class of the LiveObject.id
- the RId annotation used in the class.idFieldName
- field idcommandAsyncExecutor
- instance- Returns:
- resolved RId field value.
-
-