Sha256: 9e71d95cb44740de56881c97a68ee6971f773cd4e4e4a59deed2fa376c251e92

Contents?: true

Size: 995 Bytes

Versions: 6

Compression:

Stored size: 995 Bytes

Contents

# Copyright 2017 OpenCensus Authors
#
# 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
#
#     http://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 OpenCensus
  module Trace
    ##
    # A time-stamped annotation or message event in the Span.
    #
    class TimeEvent
      ##
      # The time the event occurred.
      #
      # @return [Time]
      #
      attr_reader :time

      ##
      # Create a TimeEvent object
      #
      # @private
      #
      def initialize time: nil
        @time = time || ::Time.now.utc
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
opencensus-0.3.1 lib/opencensus/trace/time_event.rb
opencensus-0.3.0 lib/opencensus/trace/time_event.rb
opencensus-0.2.2 lib/opencensus/trace/time_event.rb
opencensus-0.2.1 lib/opencensus/trace/time_event.rb
opencensus-0.2.0 lib/opencensus/trace/time_event.rb
opencensus-0.1.0 lib/opencensus/trace/time_event.rb