Created
January 20, 2016 03:50
-
-
Save skuenzli/2a73d485b67ca8492210 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Create a Props for the specified actorBeanName using the | |
| * SpringActorProducer class. | |
| * | |
| * @param actorBeanName The name of the actor bean to create Props for | |
| * @return a Props that will create the named actor bean using Spring | |
| */ | |
| public Props props(String actorBeanName) { | |
| return Props.create(SpringActorProducer.class, applicationContext, actorBeanName); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment