Examples of actorClass()


Examples of com.fourtyfourblocks.akka.di.ActorProps.actorClass()

        {
            logger.debug("Injecting at: {}", ip.getMember().getDeclaringClass());
            logger.debug("Annotation: {}", ip.getAnnotated().getAnnotations());
        }

        return Props.create(factory.creator(propsDefinition.actorClass()));
    }
}
   
View Full Code Here

Examples of com.fourtyfourblocks.akka.di.ActorProps.actorClass()

        for (Field field : type.getRawType().getDeclaredFields())
        {
            if (field.getType() == Props.class && field.isAnnotationPresent(ActorProps.class))
            {
                final ActorProps annotation = field.getAnnotation(ActorProps.class);
                encounter.register(new ActorPropsInjector<I>(field, annotation.actorClass()));
            }
        }
    }
}
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.