Base — Documentation by YARD 0.9.37 (original) (raw)
Class: Mongo::Event::Base
Inherits:
Object
- Object
- Mongo::Event::Base show all
Defined in:
lib/mongo/event/base.rb
Overview
Base class for all events.
Direct Known Subclasses
Monitoring::Event::Cmap::Base, Monitoring::Event::CommandFailed, Monitoring::Event::CommandStarted, Monitoring::Event::CommandSucceeded, Monitoring::Event::ServerClosed, Monitoring::Event::ServerDescriptionChanged, Monitoring::Event::ServerHeartbeatFailed, Monitoring::Event::ServerHeartbeatStarted, Monitoring::Event::ServerHeartbeatSucceeded, Monitoring::Event::ServerOpening, Monitoring::Event::TopologyChanged, Monitoring::Event::TopologyClosed, Monitoring::Event::TopologyOpening
Instance Method Summarycollapse
- #summary ⇒ String
Returns a concise yet useful summary of the event.
Instance Method Details
#summary ⇒ String
Note:
This method is experimental and subject to change.
Returns a concise yet useful summary of the event. Meant to be overridden in derived classes.
34 35 36 | # File 'lib/mongo/event/base.rb', line 34 def summary "#<#{self.class}>" end |
---|