Sha256: d1ca4c9075373c334ec95d7e0528a0314ebe7bc225ac2f71254b90c06311e2a5
Contents?: true
Size: 1022 Bytes
Versions: 33
Compression:
Stored size: 1022 Bytes
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) end Stub = Service.rpc_stub_class end end
Version data entries
33 entries across 33 versions & 1 rubygems