Search in sources :

Example 1 with CommandSegmentFactory

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);
}
Also used : AnnotationCommandSegmentFactory(io.lettuce.core.dynamic.segment.AnnotationCommandSegmentFactory) OutputRegistryCommandOutputFactoryResolver(io.lettuce.core.dynamic.output.OutputRegistryCommandOutputFactoryResolver) OutputRegistry(io.lettuce.core.dynamic.output.OutputRegistry) CommandSegmentFactory(io.lettuce.core.dynamic.segment.CommandSegmentFactory) AnnotationCommandSegmentFactory(io.lettuce.core.dynamic.segment.AnnotationCommandSegmentFactory) CodecAwareOutputFactoryResolver(io.lettuce.core.dynamic.output.CodecAwareOutputFactoryResolver)

Example 2 with CommandSegmentFactory

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);
}
Also used : AnnotationCommandSegmentFactory(io.lettuce.core.dynamic.segment.AnnotationCommandSegmentFactory) CommandSegments(io.lettuce.core.dynamic.segment.CommandSegments) Method(java.lang.reflect.Method) CommandSegmentFactory(io.lettuce.core.dynamic.segment.CommandSegmentFactory) AnnotationCommandSegmentFactory(io.lettuce.core.dynamic.segment.AnnotationCommandSegmentFactory)

Aggregations

AnnotationCommandSegmentFactory (io.lettuce.core.dynamic.segment.AnnotationCommandSegmentFactory)2 CommandSegmentFactory (io.lettuce.core.dynamic.segment.CommandSegmentFactory)2 CodecAwareOutputFactoryResolver (io.lettuce.core.dynamic.output.CodecAwareOutputFactoryResolver)1 OutputRegistry (io.lettuce.core.dynamic.output.OutputRegistry)1 OutputRegistryCommandOutputFactoryResolver (io.lettuce.core.dynamic.output.OutputRegistryCommandOutputFactoryResolver)1 CommandSegments (io.lettuce.core.dynamic.segment.CommandSegments)1 Method (java.lang.reflect.Method)1