Socialmetrica/Socialmetrica.package/TweetsCollection.class/instance/store.st

8 lines
240 B
Smalltalk
Raw Normal View History

accessing
store
ReStore isConnected ifFalse: [ self class storeDB]. "Starting the ReStore singleton."
2022-04-14 22:40:41 +00:00
self messages do: [:each | ReStore evaluateAsTransaction: [
each store.
each user isInDB ifFalse: [ each user store ]
]
].