@comunica/bus-query-operation 1.21.1 → 2.0.1-alpha.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +22 -0
- package/README.md +2 -2
- package/components/ActorQueryOperation.jsonld +213 -0
- package/components/ActorQueryOperationTyped.jsonld +218 -0
- package/components/ActorQueryOperationTypedMediated.jsonld +244 -0
- package/components/components.jsonld +7 -5
- package/components/context.jsonld +125 -8
- package/lib/ActorQueryOperation.d.ts +42 -120
- package/lib/ActorQueryOperation.js +44 -89
- package/lib/ActorQueryOperationTyped.d.ts +7 -12
- package/lib/ActorQueryOperationTyped.js +13 -11
- package/lib/ActorQueryOperationTypedMediated.d.ts +4 -5
- package/lib/Bindings.d.ts +13 -26
- package/lib/Bindings.js +61 -60
- package/lib/index.d.ts +4 -0
- package/{index.js → lib/index.js} +4 -4
- package/package.json +18 -39
- package/components/Actor/QueryOperation.jsonld +0 -31
- package/components/Actor/QueryOperationTypedMediated.jsonld +0 -34
- package/components/Bus/QueryOperation.jsonld +0 -8
- package/index.d.ts +0 -4
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2017–now Ruben Taelman, Joachim Van Herwegen
|
|
4
|
+
Comunica Association and Ghent University – imec, Belgium
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -17,8 +17,8 @@ $ yarn add @comunica/bus-query-operation
|
|
|
17
17
|
|
|
18
18
|
## Bus usage
|
|
19
19
|
|
|
20
|
-
* **Context**: `"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-query-operation/^
|
|
21
|
-
* **Bus name**: `
|
|
20
|
+
* **Context**: `"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-query-operation/^2.0.0/components/context.jsonld"`
|
|
21
|
+
* **Bus name**: `ActorQueryOperation:_default_bus`
|
|
22
22
|
|
|
23
23
|
## Creating actors on this bus
|
|
24
24
|
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": [
|
|
3
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-query-operation/^2.0.0/components/context.jsonld",
|
|
4
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/core/^2.0.0/components/context.jsonld",
|
|
5
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/types/^2.0.0/components/context.jsonld"
|
|
6
|
+
],
|
|
7
|
+
"@id": "npmd:@comunica/bus-query-operation",
|
|
8
|
+
"components": [
|
|
9
|
+
{
|
|
10
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation",
|
|
11
|
+
"@type": "AbstractClass",
|
|
12
|
+
"requireElement": "ActorQueryOperation",
|
|
13
|
+
"extends": [
|
|
14
|
+
{
|
|
15
|
+
"@type": "GenericComponentExtension",
|
|
16
|
+
"component": "cc:components/Actor.jsonld#Actor",
|
|
17
|
+
"genericTypeInstances": [
|
|
18
|
+
"cbqo:components/ActorQueryOperation.jsonld#IActionQueryOperation",
|
|
19
|
+
"cc:components/Actor.jsonld#IActorTest",
|
|
20
|
+
{
|
|
21
|
+
"@type": "ParameterRangeUnion",
|
|
22
|
+
"parameterRangeElements": [
|
|
23
|
+
"ct:components/IQueryOperationResult.jsonld#IQueryOperationResultBindings",
|
|
24
|
+
"ct:components/IQueryOperationResult.jsonld#IQueryOperationResultQuads",
|
|
25
|
+
"ct:components/IQueryOperationResult.jsonld#IQueryOperationResultBoolean",
|
|
26
|
+
"ct:components/IQueryOperationResult.jsonld#IQueryOperationResultVoid"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"comment": "A comunica actor for query-operation events. Actor types: * Input: IActionQueryOperation: A SPARQL Algebra operation. * Test: <none> * Output: IActorQueryOperationOutput: A bindings stream.",
|
|
33
|
+
"parameters": [
|
|
34
|
+
{
|
|
35
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_args_name",
|
|
36
|
+
"range": "xsd:string",
|
|
37
|
+
"default": {
|
|
38
|
+
"@id": "rdf:subject"
|
|
39
|
+
},
|
|
40
|
+
"comment": "The name for this actor."
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_args_bus",
|
|
44
|
+
"range": {
|
|
45
|
+
"@type": "ParameterRangeGenericComponent",
|
|
46
|
+
"component": "cc:components/Bus.jsonld#Bus",
|
|
47
|
+
"genericTypeInstances": [
|
|
48
|
+
{
|
|
49
|
+
"@type": "ParameterRangeGenericComponent",
|
|
50
|
+
"component": "cc:components/Actor.jsonld#Actor",
|
|
51
|
+
"genericTypeInstances": [
|
|
52
|
+
{
|
|
53
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
54
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
58
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
62
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
68
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
72
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
76
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"default": {
|
|
81
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_default_bus",
|
|
82
|
+
"@type": "cc:components/Bus.jsonld#Bus"
|
|
83
|
+
},
|
|
84
|
+
"comment": "The bus this actor subscribes to."
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_args_beforeActors",
|
|
88
|
+
"range": {
|
|
89
|
+
"@type": "ParameterRangeUnion",
|
|
90
|
+
"parameterRangeElements": [
|
|
91
|
+
{
|
|
92
|
+
"@type": "ParameterRangeArray",
|
|
93
|
+
"parameterRangeValue": {
|
|
94
|
+
"@type": "ParameterRangeGenericComponent",
|
|
95
|
+
"component": "cc:components/Actor.jsonld#Actor",
|
|
96
|
+
"genericTypeInstances": [
|
|
97
|
+
{
|
|
98
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
99
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
103
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
107
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"@type": "ParameterRangeUndefined"
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
"comment": "Actor that must be registered in the bus before this actor."
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"memberKeys": [
|
|
121
|
+
"constructor",
|
|
122
|
+
"getSafeBindings",
|
|
123
|
+
"getSafeQuads",
|
|
124
|
+
"getSafeBoolean",
|
|
125
|
+
"getSafeVoid",
|
|
126
|
+
"cachifyMetadata",
|
|
127
|
+
"validateQueryOutput",
|
|
128
|
+
"getBaseExpressionContext",
|
|
129
|
+
"getExpressionContext",
|
|
130
|
+
"getAsyncExpressionContext",
|
|
131
|
+
"createExistenceResolver",
|
|
132
|
+
"throwOnReadOnly"
|
|
133
|
+
],
|
|
134
|
+
"constructorArguments": [
|
|
135
|
+
{
|
|
136
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_args__constructorArgument",
|
|
137
|
+
"fields": [
|
|
138
|
+
{
|
|
139
|
+
"keyRaw": "name",
|
|
140
|
+
"value": {
|
|
141
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_args_name"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"keyRaw": "bus",
|
|
146
|
+
"value": {
|
|
147
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_args_bus"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"keyRaw": "beforeActors",
|
|
152
|
+
"value": {
|
|
153
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_args_beforeActors"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
]
|
|
157
|
+
}
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#IActionQueryOperation",
|
|
162
|
+
"@type": "AbstractClass",
|
|
163
|
+
"requireElement": "IActionQueryOperation",
|
|
164
|
+
"extends": [
|
|
165
|
+
"cc:components/Actor.jsonld#IAction"
|
|
166
|
+
],
|
|
167
|
+
"parameters": [],
|
|
168
|
+
"memberKeys": [
|
|
169
|
+
"operation"
|
|
170
|
+
],
|
|
171
|
+
"constructorArguments": []
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#IBaseExpressionContext",
|
|
175
|
+
"@type": "AbstractClass",
|
|
176
|
+
"requireElement": "IBaseExpressionContext",
|
|
177
|
+
"parameters": [],
|
|
178
|
+
"memberKeys": [
|
|
179
|
+
"now",
|
|
180
|
+
"baseIRI",
|
|
181
|
+
"extensionFunctionCreator"
|
|
182
|
+
],
|
|
183
|
+
"constructorArguments": []
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ISyncExpressionContext",
|
|
187
|
+
"@type": "AbstractClass",
|
|
188
|
+
"requireElement": "ISyncExpressionContext",
|
|
189
|
+
"extends": [
|
|
190
|
+
"cbqo:components/ActorQueryOperation.jsonld#IBaseExpressionContext"
|
|
191
|
+
],
|
|
192
|
+
"parameters": [],
|
|
193
|
+
"memberKeys": [
|
|
194
|
+
"bnode"
|
|
195
|
+
],
|
|
196
|
+
"constructorArguments": []
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#IAsyncExpressionContext",
|
|
200
|
+
"@type": "AbstractClass",
|
|
201
|
+
"requireElement": "IAsyncExpressionContext",
|
|
202
|
+
"extends": [
|
|
203
|
+
"cbqo:components/ActorQueryOperation.jsonld#IBaseExpressionContext"
|
|
204
|
+
],
|
|
205
|
+
"parameters": [],
|
|
206
|
+
"memberKeys": [
|
|
207
|
+
"bnode",
|
|
208
|
+
"exists"
|
|
209
|
+
],
|
|
210
|
+
"constructorArguments": []
|
|
211
|
+
}
|
|
212
|
+
]
|
|
213
|
+
}
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": [
|
|
3
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-query-operation/^2.0.0/components/context.jsonld",
|
|
4
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/core/^2.0.0/components/context.jsonld"
|
|
5
|
+
],
|
|
6
|
+
"@id": "npmd:@comunica/bus-query-operation",
|
|
7
|
+
"components": [
|
|
8
|
+
{
|
|
9
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped",
|
|
10
|
+
"@type": "AbstractClass",
|
|
11
|
+
"requireElement": "ActorQueryOperationTyped",
|
|
12
|
+
"extends": [
|
|
13
|
+
"cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation"
|
|
14
|
+
],
|
|
15
|
+
"comment": "A base implementation for query operation actors for a specific operation type.",
|
|
16
|
+
"genericTypeParameters": [
|
|
17
|
+
{
|
|
18
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped__generic_O",
|
|
19
|
+
"range": {
|
|
20
|
+
"@type": "ParameterRangeUnion",
|
|
21
|
+
"parameterRangeElements": [
|
|
22
|
+
"urn:npm:sparqlalgebrajs:Ask",
|
|
23
|
+
{
|
|
24
|
+
"@type": "ParameterRangeUnion",
|
|
25
|
+
"parameterRangeElements": [
|
|
26
|
+
"urn:npm:sparqlalgebrajs:AggregateExpression",
|
|
27
|
+
"urn:npm:sparqlalgebrajs:GroupConcatExpression",
|
|
28
|
+
"urn:npm:sparqlalgebrajs:ExistenceExpression",
|
|
29
|
+
"urn:npm:sparqlalgebrajs:NamedExpression",
|
|
30
|
+
"urn:npm:sparqlalgebrajs:OperatorExpression",
|
|
31
|
+
"urn:npm:sparqlalgebrajs:TermExpression",
|
|
32
|
+
"urn:npm:sparqlalgebrajs:WildcardExpression",
|
|
33
|
+
"urn:npm:sparqlalgebrajs:BoundAggregate"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"urn:npm:sparqlalgebrajs:Bgp",
|
|
37
|
+
"urn:npm:sparqlalgebrajs:Construct",
|
|
38
|
+
"urn:npm:sparqlalgebrajs:Describe",
|
|
39
|
+
"urn:npm:sparqlalgebrajs:Distinct",
|
|
40
|
+
"urn:npm:sparqlalgebrajs:Extend",
|
|
41
|
+
"urn:npm:sparqlalgebrajs:From",
|
|
42
|
+
"urn:npm:sparqlalgebrajs:Filter",
|
|
43
|
+
"urn:npm:sparqlalgebrajs:Graph",
|
|
44
|
+
"urn:npm:sparqlalgebrajs:Group",
|
|
45
|
+
"urn:npm:sparqlalgebrajs:Join",
|
|
46
|
+
"urn:npm:sparqlalgebrajs:LeftJoin",
|
|
47
|
+
"urn:npm:sparqlalgebrajs:Minus",
|
|
48
|
+
"urn:npm:sparqlalgebrajs:Nop",
|
|
49
|
+
"urn:npm:sparqlalgebrajs:OrderBy",
|
|
50
|
+
"urn:npm:sparqlalgebrajs:Path",
|
|
51
|
+
"urn:npm:sparqlalgebrajs:Pattern",
|
|
52
|
+
"urn:npm:sparqlalgebrajs:Project",
|
|
53
|
+
{
|
|
54
|
+
"@type": "ParameterRangeUnion",
|
|
55
|
+
"parameterRangeElements": [
|
|
56
|
+
"urn:npm:sparqlalgebrajs:Alt",
|
|
57
|
+
"urn:npm:sparqlalgebrajs:Inv",
|
|
58
|
+
"urn:npm:sparqlalgebrajs:Link",
|
|
59
|
+
"urn:npm:sparqlalgebrajs:Nps",
|
|
60
|
+
"urn:npm:sparqlalgebrajs:OneOrMorePath",
|
|
61
|
+
"urn:npm:sparqlalgebrajs:Seq",
|
|
62
|
+
"urn:npm:sparqlalgebrajs:ZeroOrMorePath",
|
|
63
|
+
"urn:npm:sparqlalgebrajs:ZeroOrOnePath"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"urn:npm:sparqlalgebrajs:Reduced",
|
|
67
|
+
"urn:npm:sparqlalgebrajs:Service",
|
|
68
|
+
"urn:npm:sparqlalgebrajs:Slice",
|
|
69
|
+
"urn:npm:sparqlalgebrajs:Union",
|
|
70
|
+
"urn:npm:sparqlalgebrajs:Values",
|
|
71
|
+
{
|
|
72
|
+
"@type": "ParameterRangeUnion",
|
|
73
|
+
"parameterRangeElements": [
|
|
74
|
+
"urn:npm:sparqlalgebrajs:CompositeUpdate",
|
|
75
|
+
"urn:npm:sparqlalgebrajs:DeleteInsert",
|
|
76
|
+
"urn:npm:sparqlalgebrajs:Load",
|
|
77
|
+
"urn:npm:sparqlalgebrajs:Clear",
|
|
78
|
+
"urn:npm:sparqlalgebrajs:Create",
|
|
79
|
+
"urn:npm:sparqlalgebrajs:Drop",
|
|
80
|
+
"urn:npm:sparqlalgebrajs:Add",
|
|
81
|
+
"urn:npm:sparqlalgebrajs:Move",
|
|
82
|
+
"urn:npm:sparqlalgebrajs:Copy"
|
|
83
|
+
]
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"parameters": [
|
|
90
|
+
{
|
|
91
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_operationName",
|
|
92
|
+
"range": "xsd:string"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_args_name",
|
|
96
|
+
"range": "xsd:string",
|
|
97
|
+
"default": {
|
|
98
|
+
"@id": "rdf:subject"
|
|
99
|
+
},
|
|
100
|
+
"comment": "The name for this actor."
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_args_bus",
|
|
104
|
+
"range": {
|
|
105
|
+
"@type": "ParameterRangeGenericComponent",
|
|
106
|
+
"component": "cc:components/Bus.jsonld#Bus",
|
|
107
|
+
"genericTypeInstances": [
|
|
108
|
+
{
|
|
109
|
+
"@type": "ParameterRangeGenericComponent",
|
|
110
|
+
"component": "cc:components/Actor.jsonld#Actor",
|
|
111
|
+
"genericTypeInstances": [
|
|
112
|
+
{
|
|
113
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
114
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
118
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
122
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
128
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
132
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
136
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
"default": {
|
|
141
|
+
"@id": "cbqo:components/ActorQueryOperation.jsonld#ActorQueryOperation_default_bus",
|
|
142
|
+
"@type": "cc:components/Bus.jsonld#Bus"
|
|
143
|
+
},
|
|
144
|
+
"comment": "The bus this actor subscribes to."
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_args_beforeActors",
|
|
148
|
+
"range": {
|
|
149
|
+
"@type": "ParameterRangeUnion",
|
|
150
|
+
"parameterRangeElements": [
|
|
151
|
+
{
|
|
152
|
+
"@type": "ParameterRangeArray",
|
|
153
|
+
"parameterRangeValue": {
|
|
154
|
+
"@type": "ParameterRangeGenericComponent",
|
|
155
|
+
"component": "cc:components/Actor.jsonld#Actor",
|
|
156
|
+
"genericTypeInstances": [
|
|
157
|
+
{
|
|
158
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
159
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
163
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
167
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
168
|
+
}
|
|
169
|
+
]
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"@type": "ParameterRangeUndefined"
|
|
174
|
+
}
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
"comment": "Actor that must be registered in the bus before this actor."
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"memberKeys": [
|
|
181
|
+
"operationName",
|
|
182
|
+
"constructor",
|
|
183
|
+
"test",
|
|
184
|
+
"run",
|
|
185
|
+
"testOperation",
|
|
186
|
+
"runOperation"
|
|
187
|
+
],
|
|
188
|
+
"constructorArguments": [
|
|
189
|
+
{
|
|
190
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_args__constructorArgument",
|
|
191
|
+
"fields": [
|
|
192
|
+
{
|
|
193
|
+
"keyRaw": "name",
|
|
194
|
+
"value": {
|
|
195
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_args_name"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"keyRaw": "bus",
|
|
200
|
+
"value": {
|
|
201
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_args_bus"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"keyRaw": "beforeActors",
|
|
206
|
+
"value": {
|
|
207
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_args_beforeActors"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"@id": "cbqo:components/ActorQueryOperationTyped.jsonld#ActorQueryOperationTyped_operationName"
|
|
214
|
+
}
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
]
|
|
218
|
+
}
|