Class: SDM::ReplayChunkEvent

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

A ReplayChunkEvent represents a single event within a query replay. The timing information included in each ReplayChunkEvent may be used to replay a session in real time.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data: nil, duration: nil) ⇒ ReplayChunkEvent

Returns a new instance of ReplayChunkEvent.


12526
12527
12528
12529
12530
12531
12532
# File 'lib/models/porcelain.rb', line 12526

def initialize(
  data: nil,
  duration: nil
)
  @data = data == nil ? "" : data
  @duration = duration == nil ? nil : duration
end

Instance Attribute Details

#dataObject

The raw data of the ReplayChunkEvent.


12522
12523
12524
# File 'lib/models/porcelain.rb', line 12522

def data
  @data
end

#durationObject

The time duration over which the data in this ReplayChunkEvent was transferred.


12524
12525
12526
# File 'lib/models/porcelain.rb', line 12524

def duration
  @duration
end

Instance Method Details

#to_json(options = {}) ⇒ Object


12534
12535
12536
12537
12538
12539
12540
# File 'lib/models/porcelain.rb', line 12534

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end