ShahriyarR / MySQL-AutoXtraBackup

MySQL-AutoXtraBackup commandline tool written in Python 3 based on Percona XtraBackup
https://autoxtrabackup.azepug.az/
MIT License
139 stars 79 forks source link

GeneralClass refactoring procedure #405

Closed ShahriyarR closed 3 years ago

ShahriyarR commented 4 years ago

The constructor of GeneralClass is quite huge and also when inherited every child will get the all unneeded options. I am going to divide options into properties and will call only when necessary - lazy option loading. The next is to eliminate inheritance and use composition instead.

ShahriyarR commented 4 years ago

Done