service_grpc.pb.go ×4
Frontier kind: Joint frontier
unlabeled · c_913f20df8e8b
13 tests · 2150 LOC · 80 files · introduces 1 test · 35 LOC · 3 files
Introduces — evidence that enters the hierarchy at this concept
Code
9 ranges 35 lines · 3 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.
3 files ranked by introduced lines: 35 introduced LOC across 9 ranges.
Expand a file to inspect source; the > gutter marks introduced lines.
go.temporal.io/server/api/historyservice/v1/request_response.pb.go 17 introduced LOC · 3 ranges
Open complete file
8247
}
8248
8250
>
* x = GetDLQTasksRequest {}
8251
>
mi := & file_temporal_server_api_historyservice_v1_request_response_proto_msgTypes [ 124 ]
8252
>
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ))
8253
>
ms . StoreMessageInfo ( mi )
8254
>
}
8255
8256
func ( x * GetDLQTasksRequest ) String () string {
8263
mi := & file_temporal_server_api_historyservice_v1_request_response_proto_msgTypes [ 124 ]
8264
if x != nil {
8266
>
if ms . LoadMessageInfo () == nil {
8267
>
ms . StoreMessageInfo ( mi )
8268
>
}
8269
>
return ms
8270
}
8271
return mi . MessageOf ( x )
8309
}
8310
8312
>
* x = GetDLQTasksResponse {}
8313
>
mi := & file_temporal_server_api_historyservice_v1_request_response_proto_msgTypes [ 125 ]
8314
>
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ))
8315
>
ms . StoreMessageInfo ( mi )
8316
>
}
8317
8318
func ( x * GetDLQTasksResponse ) String () string {
go.temporal.io/server/api/historyservice/v1/service_grpc.pb.go 11 introduced LOC · 4 ranges
Open complete file
953
}
954
955
>
func ( c * historyServiceClient ) GetDLQTasks ( ctx context . Context , in * GetDLQTasksRequest , opts ... grpc . CallOption ) ( * GetDLQTasksResponse , error ) {
service_grpc.pb.go
956
>
out := new ( GetDLQTasksResponse )
957
>
err := c . cc . Invoke ( ctx , HistoryService_GetDLQTasks_FullMethodName , in , out , opts ... )
958
>
if err != nil {
959
return nil , err
960
}
962
}
963
2726
}
2727
2728
>
func _HistoryService_GetDLQTasks_Handler ( srv interface {}, ctx context . Context , dec func ( interface {}) error , interceptor grpc . UnaryServerInterceptor ) ( interface {}, error ) {
service_grpc.pb.go
2729
>
in := new ( GetDLQTasksRequest )
2730
>
if err := dec ( in ); err != nil {
2731
return nil , err
2732
}
2734
>
return srv .( HistoryServiceServer ). GetDLQTasks ( ctx , in )
2735
>
}
2736
info := & grpc . UnaryServerInfo {
2737
Server : srv ,
go.temporal.io/server/client/history/client_gen.go 7 introduced LOC · 2 ranges
Open complete file
348
var response * historyservice . GetDLQTasksResponse
349
op := func ( ctx context . Context , client historyservice . HistoryServiceClient ) error {
351
>
ctx , cancel := c . createContext ( ctx )
352
>
defer cancel ()
353
>
response , err = client . GetDLQTasks ( ctx , request , opts ... )
354
>
return err
355
>
}
356
if err := c . executeWithRedirect ( ctx , shardID , op ); err != nil {
357
return nil , err
358
}
360
}
361