Sha256: 4ef6c24f8affdda5f1f72baa2780b84ebae3cd6d0641fe584d9e3e3f2887f5a9
Contents?: true
Size: 984 Bytes
Versions: 8
Compression:
Stored size: 984 Bytes
Contents
# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: ref.proto for package 'gitaly' require 'grpc' require 'ref_pb' module Gitaly module RefService class Service include GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'gitaly.RefService' rpc :FindDefaultBranchName, FindDefaultBranchNameRequest, FindDefaultBranchNameResponse rpc :FindAllBranchNames, FindAllBranchNamesRequest, stream(FindAllBranchNamesResponse) rpc :FindAllTagNames, FindAllTagNamesRequest, stream(FindAllTagNamesResponse) # Find a Ref matching the given constraints. Response may be empty. rpc :FindRefName, FindRefNameRequest, FindRefNameResponse # Return a stream so we can divide the response in chunks of branches rpc :FindLocalBranches, FindLocalBranchesRequest, stream(FindLocalBranchesResponse) end Stub = Service.rpc_stub_class end end
Version data entries
8 entries across 8 versions & 1 rubygems