Class: Appdash::Event::Message

Inherits:
Base
  • Object
show all
Defined in:
lib/appdash/event/message.rb

Overview

Message is an event that contains only a human-readable message.

Instance Attribute Summary

Attributes inherited from Base

#attrs, #schema

Instance Method Summary collapse

Methods inherited from Base

#to_a

Constructor Details

#initialize(msg) ⇒ Message

Returns a new instance of Message.

Parameters:

  • msg (String)

    the message



10
11
12
# File 'lib/appdash/event/message.rb', line 10

def initialize(msg)
  super("msg", msg: msg)
end