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

9 lines
244 B
Smalltalk

accessing
store
ReStore isConnected ifFalse: [ self class storeDB]. "Starting the ReStore singleton."
self tweets do: [:each |
ReStore evaluateAsTransaction: [
each store.
"each user isInDB? ifFalse: [ each user store ]"
]
].