use of io.lettuce.core.dynamic.segment.CommandSegmentFactory in project lettuce-core by lettuce-io.
the class CommandSegmentCommandFactoryUnitTests method createCommand.
@SuppressWarnings("unchecked")
private RedisCommand<?, ?, ?> createCommand(CommandMethod commandMethod, RedisCodec<?, ?> codec, Object... args) {
CommandSegmentFactory segmentFactory = new AnnotationCommandSegmentFactory();
CodecAwareOutputFactoryResolver outputFactoryResolver = new CodecAwareOutputFactoryResolver(new OutputRegistryCommandOutputFactoryResolver(new OutputRegistry()), codec);
CommandSegmentCommandFactory factory = new CommandSegmentCommandFactory(segmentFactory.createCommandSegments(commandMethod), commandMethod, codec, outputFactoryResolver);
return factory.createCommand(args);
}
use of io.lettuce.core.dynamic.segment.CommandSegmentFactory in project lettuce-core by lettuce-io.
the class DefaultCommandMethodVerifierUnitTests method validateMethod.
private void validateMethod(String methodName, Class<?>... parameterTypes) {
Method method = ReflectionUtils.findMethod(MyInterface.class, methodName, parameterTypes);
CommandSegmentFactory commandSegmentFactory = new AnnotationCommandSegmentFactory();
CommandMethod commandMethod = DeclaredCommandMethod.create(method);
CommandSegments commandSegments = commandSegmentFactory.createCommandSegments(commandMethod);
sut.validate(commandSegments, commandMethod);
}
Aggregations