request_response.pb.go ×4

Frontier kind: Code frontier

unlabeled · c_281447535aa3

13 tests · 3596 LOC · 181 files · introduces 0 tests · 26 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
6 ranges26 lines · 2 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
579 ranges3596 lines · 181 files · Browse complete extent
All tests (intent)
13 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.

2 files ranked by introduced lines: 26 introduced LOC across 6 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/api/historyservice/v1/request_response.pb.go 16 introduced LOC · 4 ranges

Open complete file

424 }
425
426 > func (x *StartWorkflowExecutionResponse) GetEagerWorkflowTask() *v1.PollWorkflowTaskQueueResponse { request_response.pb.go
427 > if x != nil {
428 > return x.EagerWorkflowTask
429 > }
430 return nil
431 }
438 }
439
440 > func (x *StartWorkflowExecutionResponse) GetStatus() v12.WorkflowExecutionStatus { request_response.pb.go
441 > if x != nil {
442 > return x.Status
443 > }
444 return v12.WorkflowExecutionStatus(0)
445 }
446
447 > func (x *StartWorkflowExecutionResponse) GetLink() *v14.Link { request_response.pb.go
448 > if x != nil {
449 > return x.Link
450 > }
451 return nil
452 }
453
454 > func (x *StartWorkflowExecutionResponse) GetFirstExecutionRunId() string { request_response.pb.go
455 > if x != nil {
456 > return x.FirstExecutionRunId
457 > }
458 return ""
459 }
go.temporal.io/server/service/frontend/workflow_handler.go 10 introduced LOC · 2 ranges

Open complete file

577 resp *historyservice.StartWorkflowExecutionResponse,
578 namespaceName namespace.Name,
579 > ) (*workflowservice.StartWorkflowExecutionResponse, error) { workflow_handler.go
580 > if resp.GetEagerWorkflowTask() != nil {
581 if err := api.ProcessOutgoingSearchAttributes(
582 wh.saProvider,
590 }
591
592 > return &workflowservice.StartWorkflowExecutionResponse{ workflow_handler.go
593 > RunId: resp.GetRunId(),
594 > FirstExecutionRunId: resp.GetFirstExecutionRunId(),
595 > Started: resp.Started,
596 > EagerWorkflowTask: resp.GetEagerWorkflowTask(),
597 > Link: resp.GetLink(),
598 > Status: resp.GetStatus(),
599 > }, nil
600 }
601