- Updated scaldi v0.5.8
- Cross-compile for scala 2.11 and 2.12
- Updated dependencies
- Updated scaldi v0.5.7
- Updated akka v2.4.1
- Compiled with Java 8 from now on
- Updated to scaldi version 0.5.6
- Updated to scaldi version 0.5.5
- Updated to scaldi version 0.5.4
- Updated to scaldi version 0.5.4
- Updated to scaldi version 0.5.3
- Updated to scaldi version 0.5.1
- Updated to scaldi version 0.5
- Updated to scaldi version 0.4
- Updated to scaldi version 0.3.2
- Added support for scala 2.11 (cross-compiling with 2.10 and 2.11)
- Updated scaldi to version 0.3.1
- Now using implicit
ActorRefFactory
instead ofActorSystem
in order to useActorContext
when available
- Allows to inject actor
Props
andActorRef
for the actor bindings:It is important to note, that// bind binding toProvider new Greeter bind [GreetPrinter] toProvider new GreetPrinter // inject injectActorProps [GreetPrinter] injectActorRef [GreetPrinter] injectActorRef [GreetPrinter] ("printer")
Actor
bindings should always be providers (bound withtoProvider
method, which will create new instances each time it gets injected)