class Console::Event::Generic
A generic event which can be used to represent structured data.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/generic.rb, line 13 def as_json(...) to_hash end
Convert the event to a hash suitable for JSON
serialization.
@returns [Hash] The hash representation of the event.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/generic.rb, line 35 def emit(*arguments, **options) Console.call(*arguments, event: self, **options) end
Log the event using the given output interface.
@parameter arguments [Array] The arguments to log. @parameter options [Hash] Additional options to pass to the logger output.