You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Currently, an app developer can extend the Properties class, however, they need to create their own version of PropertiesStorage to handle the customized structure. We should consider enhancing PropertiesStorage to support third-party extensions without the need to duplicate the entire code within the app.
A potential solution could be to make PropertiesStorage more flexible and adaptable by generalizing it to operate over a generic P type, rather than having it tightly coupled with the Properties type. This would facilitate easier adaptability and integration with various data structures.
Once we've generalized the PropertiesStorage, we can proceed to shift the existing Properties structure into the ARK Shelf repository.
The text was updated successfully, but these errors were encountered:
Currently, an app developer can extend the
Properties
class, however, they need to create their own version ofPropertiesStorage
to handle the customized structure. We should consider enhancingPropertiesStorage
to support third-party extensions without the need to duplicate the entire code within the app.A potential solution could be to make
PropertiesStorage
more flexible and adaptable by generalizing it to operate over a genericP
type, rather than having it tightly coupled with theProperties
type. This would facilitate easier adaptability and integration with various data structures.Once we've generalized the PropertiesStorage, we can proceed to shift the existing Properties structure into the ARK Shelf repository.
The text was updated successfully, but these errors were encountered: