message.pb.go ×3

Frontier kind: Code frontier

unlabeled · c_013c511c931e

3 tests · 5570 LOC · 188 files · introduces 0 tests · 27 LOC · 4 files

Introduces — evidence that enters the hierarchy at this concept

Code
8 ranges27 lines · 4 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
1173 ranges5570 lines · 188 files · Browse complete extent
All tests (intent)
3 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.

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

go.temporal.io/server/api/taskqueue/v1/message.pb.go 17 introduced LOC · 3 ranges

Open complete file

268 func (*InternalTaskQueueStatus) ProtoMessage() {}
269
270 > func (x *InternalTaskQueueStatus) ProtoReflect() protoreflect.Message { message.pb.go
271 > mi := &file_temporal_server_api_taskqueue_v1_message_proto_msgTypes[2]
272 > if x != nil {
273 > ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
274 > if ms.LoadMessageInfo() == nil {
275 > ms.StoreMessageInfo(mi)
276 > }
277 > return ms
278 }
279 > return mi.MessageOf(x) message.pb.go
280 }
281
433 func (*PhysicalTaskQueueInfo) ProtoMessage() {}
434
435 > func (x *PhysicalTaskQueueInfo) ProtoReflect() protoreflect.Message { message.pb.go
436 > mi := &file_temporal_server_api_taskqueue_v1_message_proto_msgTypes[4]
437 > if x != nil {
438 > ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
439 > if ms.LoadMessageInfo() == nil {
440 > ms.StoreMessageInfo(mi)
441 > }
442 > return ms
443 }
444 return mi.MessageOf(x)
go.temporal.io/server/service/matching/physical_task_queue_manager.go 4 introduced LOC · 2 ranges

Open complete file

708 }
709
710 > func (c *physicalTaskQueueManagerImpl) GetInternalTaskQueueStatus() []*taskqueuespb.InternalTaskQueueStatus { physical_task_queue_manager.go
711 > status := c.backlogMgr.InternalStatus()
712 > if m := c.getDrainBacklogMgr(); m != nil {
713 drainStatus := m.InternalStatus()
714 for _, st := range drainStatus {
go.temporal.io/server/service/matching/task_queue_partition_manager.go 4 introduced LOC · 2 ranges

Open complete file

1424 }
1425 if reportPollers {
1426 > vInfo.PhysicalTaskQueueInfo.Pollers = physicalQueue.GetAllPollerInfo() task_queue_partition_manager.go
1427 > }
1428 if reportStats {
1429 physicalStatsByPriority := physicalQueue.GetStatsByPriority(true)
1473 }
1474 if internalTaskQueueStatus {
1475 > vInfo.PhysicalTaskQueueInfo.InternalTaskQueueStatus = physicalQueue.GetInternalTaskQueueStatus() task_queue_partition_manager.go
1476 > }
1477
1478 // The following assigns buildID to either a v2 based buildID or a versionID representing a worker-deployment version.
go.temporal.io/server/common/worker_versioning/worker_versioning.go 2 introduced LOC · 1 range

Open complete file

1210 func ExternalWorkerDeploymentVersionToStringV31(v *deploymentpb.WorkerDeploymentVersion) string {
1211 if v == nil {
1212 > return UnversionedVersionId worker_versioning.go
1213 > }
1214 return v.GetDeploymentName() + WorkerDeploymentVersionIDDelimiterV31 + v.GetBuildId()
1215 }