Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keg.init() having parameters breaks the "init() contract" #29

Open
rsyring opened this issue Sep 23, 2015 · 1 comment
Open

Keg.init() having parameters breaks the "init() contract" #29

rsyring opened this issue Sep 23, 2015 · 1 comment

Comments

@rsyring
Copy link
Member

rsyring commented Sep 23, 2015

The whole point of having an init() is to have a method that is safe to override without having to worry about passing parameters up the stack or call super().

The whole point of having the init() happen separate from the app setup was to facilitate being able to use the app as a decorator. When using a factory setup method, you can't get at the app instance to use it as a decorator, but Flask requires the app instance to use as a decorator. So when the app gets bigger and you want to move some of your stuff around, the app setup just gets ugly IMO.

Options:

  • make the class object itself have whatever methods on it we need to decorate things and then just save them for assignment to the app instance once it's created.
  • rename init() to something else like start()
  • maybe the init name isn't so helpful and we should have a "on_ready() contract" where the name would be more indicative of what we really are trying to accomplish.
@rsyring
Copy link
Member Author

rsyring commented Oct 8, 2015

I wonder if we could tie all the signals into the Keg app class automatically so that if a method exists on the app with the same name as a signal, it doesn't need to be explicitly wired.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant