registry.go ×4

Frontier kind: Code frontier

unlabeled · c_bd1079bcea65

63 tests · 2518 LOC · 129 files · introduces 0 tests · 14 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
4 ranges14 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
372 ranges2518 lines · 129 files · Browse complete extent
All tests (intent)
63 testsBrowse complete intent

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.

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.

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.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 14 introduced LOC across 4 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/service/history/hsm/registry.go 14 introduced LOC · 4 ranges

Open complete file

93 // RegisterImmediateExecutor registers an [ImmediateExecutor] for the given task type.
94 // Returns an [ErrDuplicateRegistration] if an executor for the type has already been registered.
95 > func RegisterImmediateExecutor[T Task](r *Registry, executor ImmediateExecutor[T]) error { registry.go
96 > var task T
97 > taskType := task.Type()
98 > // The executors are registered in pairs, so only need to check in one map.
99 > if existing, ok := r.immediateExecutors[taskType]; ok {
100 return fmt.Errorf(
101 "%w: executor already registered for task type %v: %v",
105 )
106 }
107 > r.immediateExecutors[taskType] = executor registry.go
108 > return nil
109 }
110
131 // RegisterTimerExecutor registers a [TimerExecutor] for the given task type.
132 // Returns an [ErrDuplicateRegistration] if an executor for the type has already been registered.
133 > func RegisterTimerExecutor[T Task](r *Registry, executor TimerExecutor[T]) error { registry.go
134 > var task T
135 > taskType := task.Type()
136 > // The executors are registered in pairs, so only need to check in one map.
137 > if existing, ok := r.timerExecutors[taskType]; ok {
138 return fmt.Errorf(
139 "%w: executor already registered for task type %v: %v",
143 )
144 }
145 > r.timerExecutors[taskType] = executor registry.go
146 > return nil
147 }
148