message.pb.go ×6

Frontier kind: Joint frontier

unlabeled · c_f80f85c84597

1 test · 4243 LOC · 185 files · introduces 1 test · 35 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
7 ranges35 lines · 2 files
Tests
1 test

Contains — complete concept membership

All code (extent)
620 ranges4243 lines · 185 files · Browse complete extent
All tests (intent)
1 testBrowse 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.

1 test introduced at this concept.

Introduced code

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

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

go.temporal.io/server/api/replication/v1/message.pb.go 24 introduced LOC · 6 ranges

Open complete file

733 }
734
735 > func (x *ReplicationTaskInfo) GetNamespaceId() string { message.pb.go
736 > if x != nil {
737 > return x.NamespaceId
738 > }
739 return ""
740 }
741
742 > func (x *ReplicationTaskInfo) GetWorkflowId() string { message.pb.go
743 > if x != nil {
744 > return x.WorkflowId
745 > }
746 return ""
747 }
761 }
762
763 > func (x *ReplicationTaskInfo) GetTaskId() int64 { message.pb.go
764 > if x != nil {
765 > return x.TaskId
766 > }
767 return 0
768 }
769
770 > func (x *ReplicationTaskInfo) GetVersion() int64 { message.pb.go
771 > if x != nil {
772 > return x.Version
773 > }
774 return 0
775 }
776
777 > func (x *ReplicationTaskInfo) GetFirstEventId() int64 { message.pb.go
778 > if x != nil {
779 > return x.FirstEventId
780 > }
781 return 0
782 }
783
784 > func (x *ReplicationTaskInfo) GetNextEventId() int64 { message.pb.go
785 > if x != nil {
786 > return x.NextEventId
787 > }
788 return 0
789 }
go.temporal.io/server/service/history/replication/dlq_handler.go 11 introduced LOC · 1 range

Open complete file

109 pageSize int,
110 pageToken []byte,
111 > ) ([]*replicationspb.ReplicationTask, []*replicationspb.ReplicationTaskInfo, []byte, error) { dlq_handler.go
112 >
113 > taskList, taskInfoList, _, token, err := r.readMessagesWithAckLevel(
114 > ctx,
115 > sourceCluster,
116 > lastMessageID,
117 > pageSize,
118 > pageToken,
119 > )
120 > return taskList, taskInfoList, token, err
121 > }
122
123 func (r *dlqHandlerImpl) PurgeMessages(