Annotation Type ImplicitBindings


@Deprecated @Target(TYPE) @Retention(RUNTIME) public @interface ImplicitBindings
Deprecated.
- With Acteur 1.5 and ServerBuilder, you are not subclassing application anymore, so this class is less useful as it can only appear on the application class. Instead, use HttpCall with the scopeTypes parameter register types on the acteurs that use them; or use ServerBuilder.withType().
Annotation which can be placed on instances of Application to add bindings in that application's scope. If you write Acteurs which will include new objects for injection into subsequent acteurs in the chain, you need to annotation your Application subclass with this annotation and specify what types will be injected.

Note: If you are using the @HttpCall annotation, you can specify these classes there.

Author:
Tim Boudreau
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    Class<?>[]
    Deprecated.
    A list of types which Acteurs will pass in their state, which should be injectable into subsequent acteurs.
  • Element Details

    • value

      Class<?>[] value
      Deprecated.
      A list of types which Acteurs will pass in their state, which should be injectable into subsequent acteurs.
      Returns:
      The list of classes