Rename anything that is specific to Lagom's dev mode to "LagomDevMode*"
See original GitHub issueThere’s a fair amount of internal API in Lagom that is specific to Lagom’s dev mode, but when reading the source, it’s not immediately clear that this is the case, and this can make things quite confusing for someone trying to understand the Lagom source code. We should make it 100% clear what only exists for dev mode by doing the following:
- Ensure all internal Lagom devmode components are in a package call
devmode
. - Rename the major interfaces to be prefixed with
LagomDevMode
, egLagomDevModeServiceRegistry
.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:21 (9 by maintainers)
Top Results From Across the Web
Reformat and unnest · Issue #8992 - GitHub
Replace scalariform with scalafmt lagom/lagom#857 ... Rename anything that is specific to Lagom's dev mode to "LagomDevMode*" lagom/lagom# ...
Read more >pandas.DataFrame.rename — pandas 1.5.2 documentation
In case of a MultiIndex, only rename labels in the specified level. If 'raise', raise a KeyError when a dict-like mapper , index...
Read more >Dynamic Rename Tool - Alteryx Help
Use Dynamic Rename to rename columns within an input data stream. Use this tool to parse text files, to pull column names from...
Read more >Rename columns - dplyr
rename () changes the names of individual variables using new_name = old_name syntax; rename_with() renames columns using a function.
Read more >Rename a column (Power Query) - Microsoft Support
To rename a Power Query data source column, use the Query Editor to change its name. The new column name is used in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @ralphlaude, yeah. Now it’s a good moment to start.
We need to be careful with #2609. @dwijnand is working on cleaning up the reloadable server.
The ultimate goal is to not have a reloaded server in Lagom, but use the one from Play. So, maybe to avoid conflicts you can leave this class untouched.
@ihostage, I think the main idea of having it prefixed with
Lagom
is not to indicate that you are in Lagom code base, but because it’s the name of the thing. That’s about Lagom’s Dev Mode infrastructure code.But I’m ok in removing it. Only
DevMode
is also fine. Let’s see what others think about it.👍 for moving
devmode
package up.