Sha256: 40f163bf6bdc971bf8c08218f86f3efac4f915b5f25286471782b06a4d5b06c9
Contents?: true
Size: 903 Bytes
Versions: 69
Compression:
Stored size: 903 Bytes
Contents
# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: diff.proto for package 'gitaly' require 'grpc' require 'diff_pb' module Gitaly module DiffService class Service include GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'gitaly.DiffService' # Returns stream of CommitDiffResponse with patches chunked over messages rpc :CommitDiff, CommitDiffRequest, stream(CommitDiffResponse) # Return a stream so we can divide the response in chunks of deltas rpc :CommitDelta, CommitDeltaRequest, stream(CommitDeltaResponse) rpc :CommitPatch, CommitPatchRequest, stream(CommitPatchResponse) rpc :RawDiff, RawDiffRequest, stream(RawDiffResponse) rpc :RawPatch, RawPatchRequest, stream(RawPatchResponse) end Stub = Service.rpc_stub_class end end
Version data entries
69 entries across 69 versions & 1 rubygems