Eclipse RCP 定期工作区保存

Eclipse RCP periodic workspace save

我正在 Eclipse 4.2 中开发 RCP 应用程序。

我收到 "Periodic workspace has encountered a problem" 错误。 我的问题是如何在我的 RCP 应用程序中禁用定期工作区保存。

谢谢!

你不能完全禁用它,但你可以将间隔设置得很大。

IWorkspaceDescription description = ResourcesPlugin.getWorkspace().getDescription();

description.setSnapshotInterval(interval in milliseconds);

ResourcesPlugin.getWorkspace().setDescription(description);

您还应该调查保存时遇到问题的原因。