Sha256: 8992b0d5a7bf29cfffd9a90e57699d8d6a9b95dd18e1aa2710c4e071367b2baa
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
# frozen_string_literal: true module GrpcKit module Calls class Call Name = Struct.new(:name, :receiver) Reciver = Struct.new(:class) Klass = Struct.new(:service_name) # @return [GrpcKit::Calls::Call::Name] gRPC method object attr_reader :method # @return [Symbol] gRPC method name attr_reader :method_name # @return [String] gRPC service name attr_reader :service_name # @return [Hash<String, String>] gRPC metadata attr_reader :metadata # @param stream [GrpcKit::Stream::ServerStream|GrpcKit::Stream::ClientStream] # @param config [GrpcKit::MethodConfig] # @param metadata [Hash<String,String>] def initialize(stream:, config:, metadata:, timeout: nil) @config = config @metadata = metadata @method_name = @config.method_name @service_name = @config.service_name @protobuf = @config.protobuf @timeout = timeout @stream = stream # for compatible klass = Klass.new(@service_name) @method ||= Name.new(@method_name, Reciver.new(klass)) @restrict = false end # @return [void] def restrict_mode @restrict = true end # @return [void] def normal_mode @restrict = false end # @return [Time] deadline of this rpc call def deadline @deadline ||= @timeout.to_absolute_time end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grpc_kit-0.1.9 | lib/grpc_kit/calls.rb |