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
What do you think about having a WriteService that is truly able to write only, not read? This would be useful for applications that openly consume information that might be sensitive/personal. You probably don't want to make that information openly readable though. That's just an example off the top of my head. There are probably better use cases existing out in the wild.
This would also imply renaming the current WriteService to ReadWriteService. There is potential breakage there, but I like accurate names and, if it's going to happen, the sooner the better.
from service.py :
class WriteService(ReadService):
thanks.
The text was updated successfully, but these errors were encountered:
Hi,
What do you think about having a WriteService that is truly able to write only, not read? This would be useful for applications that openly consume information that might be sensitive/personal. You probably don't want to make that information openly readable though. That's just an example off the top of my head. There are probably better use cases existing out in the wild.
This would also imply renaming the current WriteService to ReadWriteService. There is potential breakage there, but I like accurate names and, if it's going to happen, the sooner the better.
from service.py :
class WriteService(ReadService):
thanks.
The text was updated successfully, but these errors were encountered: