Sha256: b6d7b97d7482801d012d0aa8d57fa3d9832e6f86bcc968695f25171e56d79e83
Contents?: true
Size: 1.54 KB
Versions: 75
Compression:
Stored size: 1.54 KB
Contents
# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: hook.proto for package 'gitaly' require 'grpc' require 'hook_pb' module Gitaly module HookService # HookService is a service which provides the implementation of a subset of # Git hooks. These are typically invoked via the `gitaly-hooks` binary to # ensure that the actual hook logic is executed in the context of the server. class Service include ::GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'gitaly.HookService' # This comment is left unintentionally blank. rpc :PreReceiveHook, stream(::Gitaly::PreReceiveHookRequest), stream(::Gitaly::PreReceiveHookResponse) # This comment is left unintentionally blank. rpc :PostReceiveHook, stream(::Gitaly::PostReceiveHookRequest), stream(::Gitaly::PostReceiveHookResponse) # This comment is left unintentionally blank. rpc :UpdateHook, ::Gitaly::UpdateHookRequest, stream(::Gitaly::UpdateHookResponse) # This comment is left unintentionally blank. rpc :ReferenceTransactionHook, stream(::Gitaly::ReferenceTransactionHookRequest), stream(::Gitaly::ReferenceTransactionHookResponse) # PackObjectsHookWithSidechannel is an optimized version of PackObjectsHook that uses # a unix socket side channel. rpc :PackObjectsHookWithSidechannel, ::Gitaly::PackObjectsHookWithSidechannelRequest, ::Gitaly::PackObjectsHookWithSidechannelResponse end Stub = Service.rpc_stub_class end end
Version data entries
75 entries across 75 versions & 1 rubygems