nexus_events.go ×7
Frontier kind: Joint frontier
unlabeled · c_6e1e416a4f91
1 test · 2844 LOC · 141 files · introduces 1 test · 26 LOC · 1 file
Introduces — evidence that enters the hierarchy at this concept
Code
7 ranges 26 lines · 1 files
Tests
1 test
Contains — complete concept membership
Neighbourhood graph
The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.
Focus concept
Ancestors (broader)
Descendants (narrower)
Introduced files
Introduced tests
Introduced files, introduced tests, and structurally relevant concept specialization
In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.
Graph controls are ready.
Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.
JavaScript is disabled; use the native relationship evidence on this page to explore the same evidence.
Native relationship evidence
Every exact file and test below is linked only from the concept that introduces it.
Introduced tests
Every collected test enters the hierarchy at exactly one concept.
1 test introduced at this concept.
Introduced code
Every collected source range enters the hierarchy at exactly one concept.
1 file ranked by introduced lines: 26 introduced LOC across 7 ranges.
Expand a file to inspect source; the > gutter marks introduced lines.
go.temporal.io/server/chasm/lib/workflow/nexus_events.go 26 introduced LOC · 7 ranges
Open complete file
128
}
129
130
>
func ( d CancelRequestCompletedEventDefinition ) CherryPick ( ctx chasm . MutableContext , wf * Workflow , event * historypb . HistoryEvent , excludeTypes map [ enumspb . ResetReapplyExcludeType ] struct {}) error {
nexus_events.go
131
>
if _ , ok := excludeTypes [ enumspb . RESET_REAPPLY_EXCLUDE_TYPE_NEXUS ]; ok {
132
>
return ErrEventNotCherryPickable
133
>
}
134
return d . Apply ( ctx , wf , event )
135
}
160
}
161
162
>
func ( d CancelRequestFailedEventDefinition ) CherryPick ( ctx chasm . MutableContext , wf * Workflow , event * historypb . HistoryEvent , excludeTypes map [ enumspb . ResetReapplyExcludeType ] struct {}) error {
nexus_events.go
163
>
if _ , ok := excludeTypes [ enumspb . RESET_REAPPLY_EXCLUDE_TYPE_NEXUS ]; ok {
164
>
return ErrEventNotCherryPickable
165
>
}
166
return d . Apply ( ctx , wf , event )
167
}
196
func ( d StartedEventDefinition ) CherryPick ( ctx chasm . MutableContext , wf * Workflow , event * historypb . HistoryEvent , excludeTypes map [ enumspb . ResetReapplyExcludeType ] struct {}) error {
197
if _ , ok := excludeTypes [ enumspb . RESET_REAPPLY_EXCLUDE_TYPE_NEXUS ]; ok {
199
>
}
200
return d . Apply ( ctx , wf , event )
201
}
232
}
233
234
>
func ( d CompletedEventDefinition ) CherryPick ( ctx chasm . MutableContext , wf * Workflow , event * historypb . HistoryEvent , excludeTypes map [ enumspb . ResetReapplyExcludeType ] struct {}) error {
nexus_events.go
235
>
if _ , ok := excludeTypes [ enumspb . RESET_REAPPLY_EXCLUDE_TYPE_NEXUS ]; ok {
236
>
return ErrEventNotCherryPickable
237
>
}
238
return d . Apply ( ctx , wf , event )
239
}
270
}
271
272
>
func ( d FailedEventDefinition ) CherryPick ( ctx chasm . MutableContext , wf * Workflow , event * historypb . HistoryEvent , excludeTypes map [ enumspb . ResetReapplyExcludeType ] struct {}) error {
nexus_events.go
273
>
if _ , ok := excludeTypes [ enumspb . RESET_REAPPLY_EXCLUDE_TYPE_NEXUS ]; ok {
274
>
return ErrEventNotCherryPickable
275
>
}
276
return d . Apply ( ctx , wf , event )
277
}
308
}
309
310
>
func ( d CanceledEventDefinition ) CherryPick ( ctx chasm . MutableContext , wf * Workflow , event * historypb . HistoryEvent , excludeTypes map [ enumspb . ResetReapplyExcludeType ] struct {}) error {
nexus_events.go
311
>
if _ , ok := excludeTypes [ enumspb . RESET_REAPPLY_EXCLUDE_TYPE_NEXUS ]; ok {
312
>
return ErrEventNotCherryPickable
313
>
}
314
return d . Apply ( ctx , wf , event )
315
}
344
}
345
346
>
func ( d TimedOutEventDefinition ) CherryPick ( ctx chasm . MutableContext , wf * Workflow , event * historypb . HistoryEvent , excludeTypes map [ enumspb . ResetReapplyExcludeType ] struct {}) error {
nexus_events.go
347
>
if _ , ok := excludeTypes [ enumspb . RESET_REAPPLY_EXCLUDE_TYPE_NEXUS ]; ok {
348
>
return ErrEventNotCherryPickable
349
>
}
350
return d . Apply ( ctx , wf , event )
351
}