File tree 4 files changed +9
-3
lines changed
swim-host/swim.system/src/main/java/swim/system/agent
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ pipeline {
181
181
when {
182
182
anyOf {
183
183
branch ' main' ;
184
- branch pattern : " ^\\ d+.\\ d+. \\ d+ " , comparator : " REGEXP"
184
+ branch pattern : " ^\\ d+.\\ d+" , comparator : " REGEXP"
185
185
}
186
186
}
187
187
environment {
Original file line number Diff line number Diff line change 1
- swim.version =4.1.0 -SNAPSHOT
1
+ swim.version =4.2 -SNAPSHOT
2
2
graal.version =21.0.0.2
Original file line number Diff line number Diff line change 1
- swim.version =4.1.0 -SNAPSHOT
1
+ swim.version =4.2 -SNAPSHOT
2
2
graal.version =21.0.0.2
Original file line number Diff line number Diff line change 39
39
import swim .api .policy .Policy ;
40
40
import swim .api .ws .WsLane ;
41
41
import swim .collections .FingerTrieSeq ;
42
+ import swim .collections .HashTrieMap ;
42
43
import swim .concurrent .Schedule ;
43
44
import swim .concurrent .Stage ;
44
45
import swim .math .R2Shape ;
48
49
import swim .structure .Text ;
49
50
import swim .structure .Value ;
50
51
import swim .system .AbstractTierBinding ;
52
+ import swim .system .LaneBinding ;
51
53
import swim .system .LaneView ;
52
54
import swim .system .LinkBinding ;
53
55
import swim .system .Metric ;
@@ -211,6 +213,10 @@ public FingerTrieSeq<Agent> agents() {
211
213
return this .node .agents ();
212
214
}
213
215
216
+ public HashTrieMap <Uri , LaneBinding > lanes () {
217
+ return this .node .lanes ();
218
+ }
219
+
214
220
@ Override
215
221
public Agent getAgent (Value id ) {
216
222
final AgentView view = this .node .getAgentView (id );
You can’t perform that action at this time.
0 commit comments