Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [store-dev] Should deleteContent() be called?
  • From: Robert Rodini <rrodini@xxxxxxxxxxx>
  • Date: Thu, 21 Aug 2025 12:18:26 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=Idi8/9H133XflTCh62Su3Ss/52xTPBNdmXNBGcn4SpM=; b=o3xIpCP+FEVDD09zUmNCII6jtrGK9T2DILUwpH1du5Dp239aHKyXNYvN6gY89DAHhdlje6+Tzb6YolhL3YWiGo2+ju42ers/TL10a++7RfojsURBByiGVIY7lMJh3/E5Hy/GZV1LnVLRHB5Dwmy9EJKUk4Y8iDKveOAL8hJxTxHqOHqtzwhfrnDjwr0iOfokWg/ec3bcPKVNxSqxfcm/FQFyCez7MQPsyhxWQtUBRb6jjCAn298Fa55b5gqBfg/OWV06eEdaJQkI/ux5bn8Yhs1CjWDEcjaRUH/bpj1LfAke6WMZNfaWbvkQ/Ro8XdLnkV6rMgHeMlEE72QyaEYpMQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=cuj/fSMxQetfB3Jk+Uk/ED4gwLxUS7jGRmk1XrNUKvM6bVqRAjGACW8yXvBxvK+pR0I7Kl+S/ttV5tfY92aaUamNpEbpkpGEzJqSlbv4bLryFg8sHVohSEqXuZ2jC8ynvZnHTttw8SuELok3Y63NJEfFwdj1ucUMkCO3IrhCu6x6ZaPIZ7RXyz0+ZsBtLe73QN5HeqJHL07xtsVZepdZ0kbWMGqzH2BeOFfXRhT0Unl6wksZ7LnuQlZqqGmrwtYHndBdLRbASOglqhPBhq5j7RDR6AoWt1rjE8hizDuGTIW2RzNSTYSOylIKR1MsdzudUw3aybIKdwtEcJNbbfGSng==
  • Delivered-to: store-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/store-dev/>
  • List-help: <mailto:store-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/store-dev>, <mailto:store-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/store-dev>, <mailto:store-dev-request@eclipse.org?subject=unsubscribe>
  • Msip_labels:
  • Thread-index: AQHcEfmcZf3tp0gnEUKHbkNiZge/r7Rs9apygAAQ0R8=
  • Thread-topic: Should deleteContent() be called?

Yes, I do want to delete all previous content.  

My mistake.  root.deleteContent() is an API in my custom DataRoot class.  It is not part of EclipseStore.  So, I will ask differently.  Is there an EclipseStore API that I should call at startup in my scenario?

Thanks

From: store-dev <store-dev-bounces@xxxxxxxxxxx> on behalf of Florian Habermann via store-dev <store-dev@xxxxxxxxxxx>
Sent: Thursday, August 21, 2025 7:16 AM
To: store developer discussions <store-dev@xxxxxxxxxxx>
Cc: Florian Habermann <f.habermann@xxxxxxxxxxxxxxx>
Subject: Re: [store-dev] Should deleteContent() be called?
 
Hi,
Just to go sure. Do you want to erase the previous content on each startup, or is this not on purpose?
And what exactly do you mean with root.deleteContent? 

 

 

 

Florian Habermann


 


Von: store-dev <store-dev-bounces@xxxxxxxxxxx> im Auftrag von Robert Rodini via store-dev <store-dev@xxxxxxxxxxx>
Gesendet: Mittwoch, 20. August 2025 19:45
An: store developer discussions <store-dev@xxxxxxxxxxx>
Cc: Robert Rodini <rrodini@xxxxxxxxxxx>
Betreff: [store-dev] Should deleteContent() be called?
 
Hello,
In my application I have a program that reads text files and processes them into Java data structures that are then saved to Eclipse Store (it works!).

Each time the application runs it just erases the previous contents of the store.  In this scenario should I call root.deleteContent() at start up?  If I don't do this, is there a harmful effect on the store?

Thank you

Back to the top