Sha256: 08ba4079e9c4bdf7969af9ff1ca35798968272fa5961f95018ed02494a942dc7

Contents?: true

Size: 1.29 KB

Versions: 5

Compression:

Stored size: 1.29 KB

Contents

# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module Gapic
  module Rest
    ##
    # Surfaces information about the active call
    # from the underlying transport library.
    #
    class TransportOperation
      ##
      # @private
      # The underlying transport's library object that describes the active call, if any.
      # It is not guaranteed to be any specific type, and its value is not guarateed to be stable.
      # @return [::Object, nil, ::Faraday::Response]
      attr_reader :underlying_op

      ##
      # @private
      # @param request [::Object, nil, ::Faraday::Response]
      #   The underlying transport's library object that describes the active call, if any.
      def initialize underlying_op
        @underlying_op = underlying_op
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
gapic-common-0.19.1 lib/gapic/rest/transport_operation.rb
gapic-common-0.19.0 lib/gapic/rest/transport_operation.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/gapic-common-0.18.0/lib/gapic/rest/transport_operation.rb
gapic-common-0.18.0 lib/gapic/rest/transport_operation.rb
gapic-common-0.17.1 lib/gapic/rest/transport_operation.rb