mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
`TaskStorage` service is responsible for storing/updating/removing tasks from Rhizome DB. There are two implementations of the service - backend (available in mononlith and backend.split) and frontend.split The backend implementation stores `TaskInfoEntity` into a shared partition of DB, so the tasks can be available both on backend and all connected frontends. Frontend split implementation stores `TaskInfoEntity` into a local partition of DB, so the tasks produced by one of the frontends won't be available for backend or other frontends. Consider "Code With Me" case here: when one of the guests starts some tasks, it shouldn't be visible to other guests. However, if the host starts a task - all guests should see it. GitOrigin-RevId: a020d871d2f5f88809dfed551f511b116e8ff550
17 lines
930 B
XML
17 lines
930 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<module type="JAVA_MODULE" version="4">
|
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
<exclude-output />
|
|
<content url="file://$MODULE_DIR$">
|
|
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
|
|
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" packagePrefix="com.intellij.platform.progress.backend" />
|
|
</content>
|
|
<orderEntry type="inheritedJdk" />
|
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
<orderEntry type="library" name="kotlin-stdlib" level="project" />
|
|
<orderEntry type="library" name="kotlinx-coroutines-core" level="project" />
|
|
<orderEntry type="module" module-name="intellij.platform.ide.progress" />
|
|
<orderEntry type="module" module-name="intellij.platform.kernel" />
|
|
<orderEntry type="module" module-name="intellij.platform.core" />
|
|
</component>
|
|
</module> |