aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/worker.lv2/worker.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'lv2/worker.lv2/worker.ttl')
-rw-r--r--lv2/worker.lv2/worker.ttl23
1 files changed, 23 insertions, 0 deletions
diff --git a/lv2/worker.lv2/worker.ttl b/lv2/worker.lv2/worker.ttl
new file mode 100644
index 0000000..be07105
--- /dev/null
+++ b/lv2/worker.lv2/worker.ttl
@@ -0,0 +1,23 @@
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix work: <http://lv2plug.in/ns/ext/worker#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+<http://lv2plug.in/ns/ext/worker>
+ a owl:Ontology ;
+ rdfs:label "LV2 Worker" ;
+ rdfs:comment "Support for doing non-realtime work in plugins." ;
+ owl:imports <http://lv2plug.in/ns/lv2core> ;
+ rdfs:seeAlso <worker.meta.ttl> .
+
+work:interface
+ a lv2:ExtensionData ;
+ rdfs:label "work interface" ;
+ rdfs:comment "The work interface provided by a plugin." .
+
+work:schedule
+ a lv2:Feature ;
+ rdfs:label "work schedule" ;
+ rdfs:comment "The work scheduling feature provided by a host." .