Sha256: a5cce34b16997e197ed588137530751c2cd1b0c2378083df601f972830d3f1f5
Contents?: true
Size: 1.08 KB
Versions: 9
Compression:
Stored size: 1.08 KB
Contents
# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: blob.proto for package 'gitaly' require 'grpc' require 'blob_pb' module Gitaly module BlobService class Service include GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'gitaly.BlobService' # GetBlob returns the contents of a blob object referenced by its object # ID. We use a stream to return a chunked arbitrarily large binary # response rpc :GetBlob, GetBlobRequest, stream(GetBlobResponse) # GetBlobsBySHA returns the contents of a blob objects referenced by their object # ID. We use a stream to return a chunked arbitrarily large binary response. # The blobs are sent in a continous stream, the caller is responsible for spliting # them up into multiple blobs by their object IDs. rpc :GetBlobs, GetBlobsRequest, stream(GetBlobsResponse) rpc :GetLFSPointers, GetLFSPointersRequest, stream(GetLFSPointersResponse) end Stub = Service.rpc_stub_class end end
Version data entries
9 entries across 9 versions & 1 rubygems