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