Sha256: ad45e06327706b6c5d35b70a90a7162d2792e167aa39327567ed53cb9a942ee5
Contents?: true
Size: 1.36 KB
Versions: 127
Compression:
Stored size: 1.36 KB
Contents
# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: analysis.proto for package 'gitaly' require 'grpc' require 'analysis_pb' module Gitaly module AnalysisService # AnalysisService is a gRPC service providing RPCs that analyze objects in a repository. class Service include ::GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'gitaly.AnalysisService' # CheckBlobsGenerated checks a provided set of blobs in a specified repository to determine # whether the file is considered generated. This RPC supports bidirectional streaming because the # client may specify any number of files to check across multiple request messages and the server # responds to each request with a separate set of response messages. # # Each provided blob in the request is validated when received. Improperly formatted requests # result in RPC termination and an error being returned to the client. The RPC also aborts and # returns an error if requests are made that list Git revisions which do not resolve to a blob # and/or cannot be found in the repository. rpc :CheckBlobsGenerated, stream(::Gitaly::CheckBlobsGeneratedRequest), stream(::Gitaly::CheckBlobsGeneratedResponse) end Stub = Service.rpc_stub_class end end
Version data entries
127 entries across 127 versions & 3 rubygems