Interface BQModule

All Known Implementing Classes:
BaseBQModule
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface BQModule
Represents a unit of configuration of the Bootique DI container.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    configure(Binder binder)
    A callback method invoked during injector assembly that allows the module to load its services.
  • Method Details

    • configure

      void configure(Binder binder)
      A callback method invoked during injector assembly that allows the module to load its services.
      Parameters:
      binder - a binder object passed by the injector assembly environment.