Sha256: a87c7f9b053ad8f065b50bf7837c21d3d85791fa54d0c8c678acad1be1f241ae
Contents?: true
Size: 1.42 KB
Versions: 16
Compression:
Stored size: 1.42 KB
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 # DiffService is a service which provides RPCs to inspect differences # introduced between a set of commits. 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, ::Gitaly::CommitDiffRequest, stream(::Gitaly::CommitDiffResponse) # Return a stream so we can divide the response in chunks of deltas rpc :CommitDelta, ::Gitaly::CommitDeltaRequest, stream(::Gitaly::CommitDeltaResponse) # This comment is left unintentionally blank. rpc :RawDiff, ::Gitaly::RawDiffRequest, stream(::Gitaly::RawDiffResponse) # This comment is left unintentionally blank. rpc :RawPatch, ::Gitaly::RawPatchRequest, stream(::Gitaly::RawPatchResponse) # This comment is left unintentionally blank. rpc :DiffStats, ::Gitaly::DiffStatsRequest, stream(::Gitaly::DiffStatsResponse) # Return a list of files changed along with the status of each file rpc :FindChangedPaths, ::Gitaly::FindChangedPathsRequest, stream(::Gitaly::FindChangedPathsResponse) end Stub = Service.rpc_stub_class end end
Version data entries
16 entries across 16 versions & 1 rubygems